TibrvListener()
Constructor
Declaration
TibrvListener
(
TibrvQueue queue,
TibrvMsgCallback callback,
TibrvTransport transport,
java.lang.String subject,
java.lang.Object closure)
throws TibrvException
Purpose
Create a listener object to listen for inbound messages.
Remarks
For each inbound message, place this event on the event queue.
Parameter |
Description |
|
For each inbound message, place the event on this event queue. |
|
On dispatch, process the event with this interface implementation. |
|
Listen for inbound messages on this transport. |
|
Listen for inbound messages with subjects that match this specification. Wildcard subjects are permitted. The empty string is not a legal subject name. |
|
Store this closure data in the event object. |
Inbox Listener
To receive unicast (point-to-point) messages, listen to a unique inbox subject name. First call TibrvTransport.createInbox() to create the unique inbox name; then call TibrvListener() to begin listening. Remember that other programs have no information about an inbox until the listening program uses it as a reply subject in an outbound message.