Home | Trees | Indices | Help |
---|
|
object --+ | _wrapper.Wrapper --+ | object --+ | | | Endpoint --+ | Link
A representation of an AMQP link, of which there are two concrete implementations, Sender and Receiver.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
Static Methods | |||
|
Class Variables | |
SND_UNSETTLED = PN_SND_UNSETTLED
|
|
SND_SETTLED = PN_SND_SETTLED
|
|
SND_MIXED = PN_SND_MIXED
|
|
RCV_FIRST = PN_RCV_FIRST
|
|
RCV_SECOND = PN_RCV_SECOND
|
|
snd_settle_mode = property(_get_snd_settle_mode, _set_snd_sett
|
|
rcv_settle_mode = property(_get_rcv_settle_mode, _set_rcv_sett
|
|
drain_mode = property(_get_drain, _set_drain)
|
|
max_message_size = property(_get_max_message_size, _set_max_me
|
|
Inherited from |
Properties | |
Inherited from |
Method Details |
x.__init__(...) initializes x; see help(type(x)) for signature
|
Opens the link. In more detail, this moves the local state of the link to the ACTIVE state and triggers an attach frame to be sent to the peer. A link is fully active once both peers have attached it. |
Closes the link. In more detail, this moves the local state of the link to the CLOSED state and triggers an detach frame (with the closed flag set) to be sent to the peer. A link is fully closed once both peers have detached it. |
The state of the link as a bit field. The state has a local and a remote component. Each of these can be in one of three states: UNINIT, ACTIVE or CLOSED. These can be tested by masking against LOCAL_UNINIT, LOCAL_ACTIVE, LOCAL_CLOSED, REMOTE_UNINIT, REMOTE_ACTIVE and REMOTE_CLOSED.
|
The source of the link as described by the local peer.
|
The target of the link as described by the local peer.
|
The source of the link as described by the remote peer.
|
The target of the link as described by the remote peer.
|
|
The connection on which this link was attached.
|
|
|
The amount of outstanding credit on this link.
|
|
|
Returns the name of the link
|
Returns true if this link is a sender.
|
Returns true if this link is a receiver.
|
|
|
|
Class Variable Details |
snd_settle_mode
|
rcv_settle_mode
|
max_message_size
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Apr 8 02:11:11 2020 | http://epydoc.sourceforge.net |