-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake_requests.py
executable file
·77 lines (56 loc) · 2.14 KB
/
make_requests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from sys import stdout
import random
import string
import txnats
from twisted.logger import globalLogPublisher
from simple_log_observer import simpleObserver
from twisted.logger import Logger
log = Logger()
from twisted.internet import defer
from twisted.internet import task
from twisted.internet import reactor
from twisted.internet.endpoints import TCP4ClientEndpoint
from twisted.internet.endpoints import connectProtocol
client_id = ''.join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(8))
def sid_on_msg(nats_protocol, sid, subject, reply_to, payload):
stdout.write("sid: {}, subject: {}, reply-to: {}\r\n".format(
sid, subject, reply_to))
stdout.write(payload.decode())
stdout.write("\r\n*")
@defer.inlineCallbacks
def someRequests(nats_protocol):
"""
The only point of this code is to show some basic subscribing
and publishing.
"""
client_inbox = "inbox_{}".format(client_id)
nats_protocol.sub(client_inbox, "1", on_msg=sid_on_msg)
for x in range(100):
nats_protocol.pub("aQueue",
"Do something! {}".format(x).encode(),
client_inbox)
# Lose the connection one second after the "and another thing" msg.
yield task.deferLater(nats_protocol.reactor,
10, nats_protocol.transport.loseConnection)
# stop the reactor(the event loop) one second after that.
yield task.deferLater(nats_protocol.reactor, 1, reactor.stop)
def main(reactor):
host = "demo.nats.io"
port = 4222
point = TCP4ClientEndpoint(reactor, host, port)
nats_protocol = txnats.io.NatsProtocol(
verbose=False,
on_connect=someRequests)
connecting = connectProtocol(point, nats_protocol)
# Log if there is an error making the connection.
connecting.addErrback(lambda np: log.info("{p}", p=np))
# Log what is returned by the connectProtocol.
connecting.addCallback(lambda np: log.info("{p}", p=np))
return connecting
if __name__ == '__main__':
globalLogPublisher.addObserver(simpleObserver)
main(reactor)
reactor.run()