Listener timescope

Namespace: Com.Tibco.As.Space.Listener
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.4.0.001)

Syntax

C#
public enum TimeScope
Visual Basic
Public Enumeration TimeScope
Visual C++
public enum class TimeScope
F#
type TimeScope

Members

Member nameValueDescription
ALL0 The listener starts with all the entries currently in the Space at creation time (which will be presented as an initial set of PUT events) and then is continuously updated according to changes in the Space.
SNAPSHOT1 The listener contains only PUT corresponding to the entries stored in the Space at creation time. The non-key fields of the tuples included in the scope are continuously updated according to changes in the Space.
NEW2 The listener starts empty and is updated only with events related to new or updated entries in the Space. Specifically means that events relating entries already in the Space at creation time will not be reported.
NEW_EVENTS3 The listener starts empty and is updated with all events that occur in the Space after creation time. Unlike NEW, includes all events, including the events related to entries already contained in the Space at creation time.

See Also