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 TypeMethodDescriptionvoid
cancel()
Attempt to cancel execution of this query.boolean
ReturnsBoolean.TRUE
if query was cancelled.
-
Method Details
-
cancel
void cancel()Attempt to cancel execution of this query. -
isCancelled
boolean isCancelled()ReturnsBoolean.TRUE
if query was cancelled.- Returns:
Boolean.TRUE
if query was cancelled
-