Interface IContinuousQueryHandle<T>
Represents a continuous query handle.
Inherited Members
Namespace: Apache.Ignite.Core.Cache.Query.Continuous
Assembly: Apache.Ignite.Core.dll
Syntax
public interface IContinuousQueryHandle<T> : IContinuousQueryHandle, IDisposable
Type Parameters
| Name | Description |
|---|---|
| T | Type of the initial query cursor. |
Methods
GetInitialQueryCursor()
Gets the cursor for initial query. Can be called only once, throws exception on consequent calls.
Declaration
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate", Justification = "Semantics: result differs from call to call.")]
IQueryCursor<T> GetInitialQueryCursor()
Returns
| Type | Description |
|---|---|
| IQueryCursor<T> | Initial query cursor. |