Represents the different types of queries available.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum QueryTypes
Public Enumeration QueryTypes
public enum class QueryTypes

Members

MemberValueDescription
SNAPSHOT0
Snapshot query. No updates will be made to the result set after the EndSnapshot event is received.
CONTINUOUS1
Continuous query. The query will send a snapshot, then keep sending update events in real-time as new results are received.
UPDATES_ONLY2
Updates-only query. The query will NOT send an initial snapshot; only update events for new changes made since the query was executed. Equivalent to a CONTINUOUS query without the initial snapshot.
DELETE3
Delete rows that match the query.

See Also