Package gofer :: Package messaging :: Class Destination
[hide private]
[frames] | no frames]

Class Destination

source code

Known Subclasses:

AMQP destinations (topics & queues)

Instance Methods [hide private]
str
address(self)
Get the destination formal AMQP address which contains properties used to create the destination.
source code
 
delete(self, session)
Delete the destination.
source code
 
__repr__(self) source code
Method Details [hide private]

address(self)

source code 

Get the destination formal AMQP address which contains properties used to create the destination.

Returns: str
The destination address.

delete(self, session)

source code 

Delete the destination. Implemented using a hack becauase python API does not directly support removing destinations.

Parameters:
  • session (qpid.messaging.Session) - An AMQP session.