oslo.messaging/oslo_messaging/tests/rpc
Dmitriy Ukhlov 5d7d7253d1 Refactor driver's listener interface
Current Listener interface has poll() method which return messages

To use it we need have poller thread which is located in MessageHandlerServer
But my investigations of existing driver's code shows that some implemetations have
its own thread inside for processing connection event loop. This event loop received
messages and store in queue object. And then our poller's thread reads this queue
This situation can be improved. we can remove poller's thread, remove queue object
and just call on_message server's callback from connection eventloop thread

This path provide posibility to do this for one of drivers and leave as is other drivers

Change-Id: I3e3d4369d8fdadcecf079d10af58b1e4f5616047
2016-04-05 18:08:08 +00:00
..
__init__.py Move files out of the namespace package 2015-01-12 12:50:41 -05:00
test_client.py Missing version parameter in can_send_version() 2016-03-15 13:04:19 +08:00
test_dispatcher.py Move server related logic from dispatchers 2016-03-30 11:07:32 +00:00
test_server.py Refactor driver's listener interface 2016-04-05 18:08:08 +00:00