mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-07 00:03:32 +02:00
send.py and test.py work
This commit is contained in:
parent
1238286602
commit
6fb82d6538
@ -1,26 +0,0 @@
|
|||||||
from proton import Message
|
|
||||||
from proton.handlers import MessagingHandler
|
|
||||||
from proton.reactor import Container
|
|
||||||
|
|
||||||
|
|
||||||
class HelloWorld(MessagingHandler):
|
|
||||||
def __init__(self, server, address):
|
|
||||||
super(HelloWorld, self).__init__()
|
|
||||||
self.server = server
|
|
||||||
self.address = address
|
|
||||||
|
|
||||||
def on_start(self, event):
|
|
||||||
conn = event.container.connect(self.server)
|
|
||||||
event.container.create_receiver(conn, self.address)
|
|
||||||
event.container.create_sender(conn, self.address)
|
|
||||||
|
|
||||||
def on_sendable(self, event):
|
|
||||||
event.sender.send(Message(body="Hello World!"))
|
|
||||||
event.sender.close()
|
|
||||||
|
|
||||||
def on_message(self, event):
|
|
||||||
print(event.message.body)
|
|
||||||
event.connection.close()
|
|
||||||
|
|
||||||
|
|
||||||
Container(HelloWorld("localhost:5672", "examples")).run()
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -15,7 +15,8 @@ services:
|
|||||||
- "./artemis-data:/var/lib/artemis-instance/data:rw"
|
- "./artemis-data:/var/lib/artemis-instance/data:rw"
|
||||||
ports:
|
ports:
|
||||||
- 8161:8161
|
- 8161:8161
|
||||||
- 61616:61616
|
- 61613:61616
|
||||||
|
- 5672:5672
|
||||||
mem_limit: 512m
|
mem_limit: 512m
|
||||||
mem_reservation: 256m
|
mem_reservation: 256m
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user