Package com.influxdb
Interface Cancellable
public interface Cancellable
Asynchronous query that can be cancelled. Cancellation is perform by the
cancel method.- Author:
- Jakub Bednar (bednar@github) (03/10/2018 13:12)
-
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()Attempt to cancel execution of this query.booleanReturnsBoolean.TRUEif query was cancelled.
-
Method Details
-
cancel
void cancel()Attempt to cancel execution of this query. -
isCancelled
boolean isCancelled()ReturnsBoolean.TRUEif query was cancelled.- Returns:
Boolean.TRUEif query was cancelled
-