public interface ContinuousQuery
| Modifier and Type | Method and Description |
|---|---|
void |
awaitTermination()
Waits for the termination of
this query, either by query.stop() or by an exception. |
boolean |
awaitTermination(long timeoutMs)
Waits for the termination of
this query, either by query.stop() or by an exception. |
scala.Option<ContinuousQueryException> |
exception()
Returns the
ContinuousQueryException if the query was terminated by an exception. |
boolean |
isActive()
Whether the query is currently active or not
|
java.lang.String |
name()
Returns the name of the query.
|
void |
processAllAvailable()
Blocks until all available data in the source has been processed an committed to the sink.
|
SinkStatus |
sinkStatus()
Returns current status of the sink.
|
SourceStatus[] |
sourceStatuses()
Returns current status of all the sources.
|
SparkSession |
sparkSession()
Returns the
SparkSession associated with this. |
void |
stop()
Stops the execution of this query if it is running.
|
java.lang.String name()
SparkSession sparkSession()
SparkSession associated with this.boolean isActive()
scala.Option<ContinuousQueryException> exception()
ContinuousQueryException if the query was terminated by an exception.SourceStatus[] sourceStatuses()
SinkStatus sinkStatus()
void awaitTermination()
this query, either by query.stop() or by an exception.
If the query has terminated with an exception, then the exception will be thrown.
If the query has terminated, then all subsequent calls to this method will either return
immediately (if the query was terminated by stop()), or throw the exception
immediately (if the query has terminated with exception).
ContinuousQueryException, - if this query has terminated with an exception.
boolean awaitTermination(long timeoutMs)
this query, either by query.stop() or by an exception.
If the query has terminated with an exception, then the exception will be thrown.
Otherwise, it returns whether the query has terminated or not within the timeoutMs
milliseconds.
If the query has terminated, then all subsequent calls to this method will either return
true immediately (if the query was terminated by stop()), or throw the exception
immediately (if the query has terminated with exception).
timeoutMs - (undocumented)ContinuousQueryException, - if this query has terminated with an exception
void processAllAvailable()
Source
prior to invocation. (i.e. getOffset must immediately reflect the addition).void stop()