EventBrowserDefTimeScope Enumeration |
Event Browser time scope
Namespace: Com.Tibco.As.Space.BrowserAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.1.5.12)
SyntaxPublic Enumeration TimeScope
public enum class TimeScope
Members
| Member name | Value | Description |
---|
| ALL | 0 |
The browser starts with all the entries currently in the Space at creation time
and is continuously updated according to changes in the Space.
|
| SNAPSHOT | 1 |
Only the entries (or associated events) stored in the Space at creation time will be browsed through.
|
| NEW | 2 |
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_EVENTS | 3 |
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