com.pcbsys.nirvana.client.nSharedDurable Class Reference

The Shared Durable implementation. More...

Inheritance diagram for com.pcbsys.nirvana.client.nSharedDurable:
com.pcbsys.nirvana.client.nIndexedDurable com.pcbsys.nirvana.client.nDurable com.pcbsys.nirvana.client.nNamedObject

Additional Inherited Members

- Public Member Functions inherited from com.pcbsys.nirvana.client.nIndexedDurable
void acknowledge (List< nConsumeEventToken > eventTokens, bool isSynchronous)
 Acknowledges multiple events in one server call. More...
 
void acknowledge (nConsumeEventToken eventToken, bool isSynchronous, bool includePreviousEventsOutstanding)
 Acknowledges multiple events in one server call. More...
 
override void acknowledge (nConsumeEventToken eventToken, bool isSynchronous)
 Sends an acknowledge request to the server for the given event id. More...
 
override nDurableViewer createViewer ()
 Creates a nDurableViewer object for viewing the elements on a given durable object. More...
 
override void remove (long eid)
 This method will attempt to remove the event with the given event ID from the durable object. More...
 
override void remove (long start, long end)
 This method will attempt to remove the events within the specified range from the durable object. More...
 
override void remove (string filter)
 This method will attempt to remove all events from the durable object which are matching the given filter. More...
 
override void removeAll ()
 If supported, the method will attempt to remove all events from the durable object. More...
 
override void rollback (nConsumeEventToken eventToken, bool isSynchronous)
 Rollbacks the given eventToken. More...
 
void rollback (List< nConsumeEventToken > eventTokens, bool isSynchronous)
 Rollbacks multiple events in one server call. More...
 
void rollback (nConsumeEventToken eventToken, bool isSynchronous, bool includePreviousEventsOutstanding)
 Rollbacks the given eventToken. More...
 
- Public Member Functions inherited from com.pcbsys.nirvana.client.nNamedObject
long getEID ()
 Returns the current event ID that this named context is bound to More...
 
long getId ()
 Returns the unique ID of this client context. More...
 
long getLength ()
 Returns the total number of events for this particular named context. More...
 
string getName ()
 Returns the name of this client context More...
 
string getSelector ()
 Selector used for this durable object to filter events. More...
 
bool isClusterWide ()
 Does this named object exist across the cluster More...
 
bool isPersistent ()
 Will this named object be restored after the Realm Server has been restarted More...
 
virtual bool isPriorityEnabled ()
 If set the named object will queue multiple subscription such that the first subscriber will receive all events until it either disconnects or deletes the subscription, at which time, the next subscription request will start to receive events. More...
 
virtual bool isQueued ()
 Indicates whether the shared durable object is backed with a hidden queue. More...
 
virtual bool isSerial ()
 Indicates whether the durable object is shared. More...
 
virtual bool isShared ()
 Indicates whether the durable object is shared. More...
 

Detailed Description

The Shared Durable implementation.

Multiple subscribers can hold a subscription to the same durable object. In this case the subscribers are queued and events are sent in a round-robin fashion.