Package org.influxdb
Interface InfluxDB.Cancellable
- Enclosing interface:
- InfluxDB
public static interface InfluxDB.Cancellable
A cancelable allows to discontinue a streaming query.
-
Method Summary
Modifier and Type Method Description void
cancel()
Cancel the streaming query call.boolean
isCanceled()
Returntrue
if thecancel()
was called.
-
Method Details
-
cancel
void cancel()Cancel the streaming query call.- See Also:
Call.cancel()
-
isCanceled
boolean isCanceled()Returntrue
if thecancel()
was called.- Returns:
true
if thecancel()
was called- See Also:
Call.isCanceled()
-