Event Browser time scope

Namespace: Com.Tibco.As.Space.Browser
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 browser starts with all the entries currently in the Space at creation time and is continuously updated according to changes in the Space.
SNAPSHOT1 Only the entries (or associated events) stored in the Space at creation time will be browsed through.
NEW2 The browser starts empty and is updated only with new changes in the Space. When using an EventBrowser specifically means that only events relating to new or updated entries in the Space will be delivered.
NEW_EVENTS3 Starts empty and is updated with all events that occur in the Space after creation time. Unlike NEW, includes events related to entries already contained in the Space at creation time.

See Also