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 representsCancellable
object dependent on another ongoing process or operation.- Since:
- 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isCancelled()
Determines whether the process or operation has been cancelled.void
setDependency(Cancellable cancellable)
SetsCancellable
dependency 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)
SetsCancellable
dependency on another ongoing process or operation represented byCancellable
.
-
isCancelled
boolean isCancelled()
Determines whether the process or operation has been cancelled.- Returns:
- cancelled flag.
-
-