servers := []string{"nats://localhost:1222",
"nats://localhost:1223",
"nats://localhost:1224",
}
nc, err := nats.Connect(strings.Join(servers, ","), nats.DontRandomize())
if err != nil {
log.Fatal(err)
}
defer nc.Close()
// Do something with the connection
Options options = new Options.Builder().
server("nats://demo.nats.io:4222").
noRandomize(). // Disable reconnect shuffle
build();
Connection nc = Nats.connect(options);
// Do something with the connection
nc.close();
let nc = NATS.connect({
noRandomize: false,
servers: ["nats://127.0.0.1:4443",
"nats://demo.nats.io:4222"
]
});
nc = NATS()
await nc.connect(
servers=[
"nats://demo.nats.io:1222",
"nats://demo.nats.io:1223",
"nats://demo.nats.io:1224"
],
dont_randomize=True,
)
# Do something with the connection
await nc.close()
require 'nats/client'
NATS.start(servers: ["nats://127.0.0.1:1222", "nats://127.0.0.1:1223", "nats://127.0.0.1:1224"], dont_randomize_servers: true) do |nc|
# Do something with the connection
# Close the connection
nc.close
end
// will throw an exception if connection fails
let nc = await connect({
noRandomize: false,
servers: ["nats://127.0.0.1:4443",
"nats://demo.nats.io:4222"
]
});
nc.close();