Package org.apache.hc.core5.concurrent
Interface CancellableDependency
-
- All Superinterfaces:
Cancellable
- All Known Implementing Classes:
CancellableExecution,ComplexCancellable,ComplexFuture
public interface CancellableDependency extends Cancellable
This interface representsCancellableobject dependent on another ongoing process or operation.- Since:
- 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisCancelled()Determines whether the process or operation has been cancelled.voidsetDependency(Cancellable cancellable)SetsCancellabledependency on another ongoing process or operation represented byCancellable.-
Methods inherited from interface org.apache.hc.core5.concurrent.Cancellable
cancel
-
-
-
-
Method Detail
-
setDependency
void setDependency(Cancellable cancellable)
SetsCancellabledependency on another ongoing process or operation represented byCancellable.
-
isCancelled
boolean isCancelled()
Determines whether the process or operation has been cancelled.- Returns:
- cancelled flag.
-
-