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()
    Return true if the cancel() was called.
  • Method Details

    • cancel

      void cancel()
      Cancel the streaming query call.
      See Also:
      Call.cancel()
    • isCanceled

      boolean isCanceled()
      Return true if the cancel() was called.
      Returns:
      true if the cancel() was called
      See Also:
      Call.isCanceled()