TibrvTransport
Class
Declaration
classTibrvTransport
virtual ~TibrvTransport(); // Destroy and reclaim storage.
Purpose
A transport object represents a delivery mechanism for messages.
Remarks
A transport describes a carrier for messages—whether across a network, among processes on a single computer, or within a process. Transports manage network connections, and send outbound messages.
A transport also defines the delivery scope of a message—that is, the set of possible destinations for the messages it sends.
Destroying a transport object invalidates subsequent send calls on that transport, and invalidates any listeners using that transport. The destructor calls the destroy
method, unless the C object is already destroyed.
This class is the superclass of all other transport classes. Methods defined by this class are implemented by all transport subclasses (except TibrvCmQueueTransport, for which some methods do not apply).
Intra-Process Transport
Each process has exactly one intra-process transport; the call Tibrv::open() automatically creates it, and the call Tibrv::processTransport() extracts it. Programs must not destroy the intra-process transport.
Method |
Description |
Request reliability interval (message retention time) for a service. |
|
Descendants
See Also
Transport in