123456789101112131415161718192021 |
- import asyncio
- from nats.aio.client import Client as NATS
- async def example():
- # [begin connect_multiple]
- nc = NATS()
- await nc.connect(servers=[
- "nats://127.0.0.1:1222",
- "nats://127.0.0.1:1223",
- "nats://127.0.0.1:1224"
- ])
- # Do something with the connection
- await nc.close()
- # [end connect_multiple]
- loop = asyncio.get_event_loop()
- loop.run_until_complete(example())
- loop.close()
|