Interface IStreamedQueryResult
Represents a streamed result. The caller is expected to call Poll repeatedly until there is no more data and the request is complete.
Namespace: Confluent.KsqlDb
Assembly: cs.temp.dll.dll
Syntax
public interface IStreamedQueryResult
Properties
IsComplete
If the result has completed streaming, and has therefore not failed.
Declaration
bool IsComplete { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFailed
If the result has failed mid stream and is incomplete.
Declaration
bool IsFailed { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
QueryId
The query id for this particular query
Declaration
string QueryId { get; }
Property Value
Type | Description |
---|---|
System.String |
Schema
The schema for this query's result.
Declaration
Schema Schema { get; }
Property Value
Type | Description |
---|---|
Schema |
Methods
PollAsync()
Polls for a row
Declaration
Task<IRow> PollAsync()
Returns
Type | Description |
---|---|
Task<IRow> | returns a task with a row or null if the result is complete |