Sessions provide a linear context for sending and receiving messages,
and manage various Senders and Receivers.
|
|
__init__(self,
connection,
name,
started)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
Sender
|
sender(self,
*args,
**kwargs)
Creates a Sender that may be used to send Messages to the
specified target. |
|
|
|
Receiver
|
receiver(self,
*args,
**kwargs)
Creates a receiver that may be used to actively fetch or to listen
for the arrival of Messages from the specified source. |
|
|
|
|
|
|
|
start(self,
*args,
**kwargs)
Start incoming message delivery for the session. |
|
|
|
|
stop(self,
*args,
**kwargs)
Stop incoming message delivery for the session. |
|
|
|
|
| run(self,
*args,
**kwargs) |
|
|
|
|
close(self,
*args,
**kwargs)
Close the session. |
|
|
|
Inherited from Lockable:
lock,
notify,
notifyAll,
unlock,
wait
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|