TIBCO FTL®
Properties | List of all members
TIBCO.FTL.IInboxSubscriber Interface Reference

Inbox subscribers receive one-to-one messages. More...

Inheritance diagram for TIBCO.FTL.IInboxSubscriber:
TIBCO.FTL.ISubscriber

Properties

IInbox Inbox [get]
 Get the inbox object from an inbox subscriber. More...
 

Detailed Description

Inbox subscribers receive one-to-one messages.

InboxSubscriber inherits most of its behavior from ISubscriber, with the following differences:

An inbox subscriber remains inert until you add it to an event queue.

To create an inbox subscriber object, call IRealm.CreateInboxSubscriber(string, ITibProperties). Programs must define a callback method in a class that implements the ISubscriberListener interface.

Customers do not implement this interface.

Property Documentation

IInbox TIBCO.FTL.IInboxSubscriber.Inbox
get

Get the inbox object from an inbox subscriber.

Messages can carry this inbox object to other programs (see IMessage.SetInbox(string, IInbox)). Programs that receive that inbox can send a stream of one-to-one messages to the inbox subscriber.

Your program must not explicitly Dispose the inbox because the inbox subscriber owns it.

an inbox object