Interface CancellableDependency

All Superinterfaces:
Cancellable
All Known Implementing Classes:
CancellableExecution, ComplexCancellable, ComplexFuture

public interface CancellableDependency extends Cancellable
This interface represents Cancellable object dependent on another ongoing process or operation.
Since:
5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Determines whether the process or operation has been cancelled.
    void
    Sets Cancellable dependency on another ongoing process or operation represented by Cancellable.

    Methods inherited from interface org.apache.hc.core5.concurrent.Cancellable

    cancel
  • Method Details

    • setDependency

      void setDependency(Cancellable cancellable)
      Sets Cancellable dependency on another ongoing process or operation represented by Cancellable.
    • isCancelled

      boolean isCancelled()
      Determines whether the process or operation has been cancelled.
      Returns:
      cancelled flag.