- call(Callable<? extends T>) - Method in interface se.tedro.concurrent.Async
-
Call the given callable on the default executor and track the result using a completable.
- call(Callable<? extends T>, ExecutorService) - Method in interface se.tedro.concurrent.Async
-
Call the given callable on the provided executor and track the result using a completable.
- Caller - Interface in se.tedro.concurrent
-
Methods for calling user-defined actions and report errors.
- cancel() - Method in interface se.tedro.concurrent.Stage
-
Cancel the current stage.
- cancelled() - Method in interface se.tedro.concurrent.Async
-
Build an immediately cancelled completable.
- cancelled() - Method in interface se.tedro.concurrent.Handle
-
Handle to be called when the underlying stage is cancelled.
- CANCELLED - Static variable in interface se.tedro.concurrent.Stage
-
- CAPTURE_STACK - Static variable in interface se.tedro.concurrent.Managed
-
System property that if set to 'yes', will cause stacks to be captured by borrowed
references.
- cause() - Method in interface se.tedro.concurrent.Stage
-
Get the cause of a failed stage.
- ClockSource - Interface in se.tedro.concurrent
-
A clock source that gives the current time in milliseconds.
- close() - Method in interface se.tedro.concurrent.Borrowed
-
- collect(Stream<? extends Stage<T>>) - Method in interface se.tedro.concurrent.Async
-
Collect the result of multiple stages from a stream.
- collect(Collection<? extends Stage<? extends T>>) - Method in interface se.tedro.concurrent.Async
-
Build a new completable that is the result of collecting all the results in a collection.
- collect(Collection<? extends Stage<? extends T>>, Function<? super Collection<T>, ? extends U>) - Method in interface se.tedro.concurrent.Async
-
Build a new completable that is the result of reducing the provided collection of stages using
the provided collector.
- collectAndDiscard(Stream<? extends Stage<?>>) - Method in interface se.tedro.concurrent.Async
-
Collect the results from a stream of stages, then discard them.
- collectAndDiscard(Collection<? extends Stage<?>>) - Method in interface se.tedro.concurrent.Async
-
Collect the results from a collection of stages, then discard them.
- completable() - Method in interface se.tedro.concurrent.Async
-
Build a new resolvable completable.
- Completable<T> - Interface in se.tedro.concurrent
-
A value that can be completed at a later point in time.
- complete(T) - Method in interface se.tedro.concurrent.Completable
-
Complete the current stage.
- completed() - Method in interface se.tedro.concurrent.Async
-
Returns an already completed void completable.
- completed(T) - Method in interface se.tedro.concurrent.Async
-
Build an already completed completable.
- completed(T) - Method in interface se.tedro.concurrent.Handle
-
Handle to be called when the underlying stage is completed.
- COMPLETED - Static variable in interface se.tedro.concurrent.Stage
-