A
C
D
E
F
G
I
M
O
P
R
S
T
U
W
C
- call(Callable,Executor) - function in com.facebook.bolts.Task.Companion
- Invokes the callable using the given executor, returning a Task to represent the operation.
- call(Callable,Executor,CancellationToken) - function in com.facebook.bolts.Task.Companion
- Invokes the callable using the given executor, returning a Task to represent the operation.
- call(Callable) - function in com.facebook.bolts.Task.Companion
- Invokes the callable on the current thread, producing a Task.
- call(Callable,CancellationToken) - function in com.facebook.bolts.Task.Companion
- Invokes the callable on the current thread, producing a Task.
- callInBackground(Callable) - function in com.facebook.bolts.Task.Companion
- Invokes the callable on a background thread, returning a Task to represent the operation.
- callInBackground(Callable,CancellationToken) - function in com.facebook.bolts.Task.Companion
- Invokes the callable on a background thread, returning a Task to represent the operation.
- cancel() - function in com.facebook.bolts.CancellationTokenSource
- Cancels the token if it has not already been cancelled.
- cancelAfter(Long) - function in com.facebook.bolts.CancellationTokenSource
- Schedules a cancel operation on this
CancellationTokenSourceafter the specified number of milliseconds. - CancellationToken - class in com.facebook.bolts
- Propagates notification that operations should be canceled.
- CancellationTokenRegistration - class in com.facebook.bolts
- Represents a callback delegate that has been registered with a CancellationToken.
- CancellationTokenSource - class in com.facebook.bolts
- Signals to a CancellationToken that it should be canceled.
- cancelled() - function in com.facebook.bolts.Task.Companion
- Creates a cancelled task.
- cast() - function in com.facebook.bolts.Task
- Makes a fluent cast of a Task's result possible, avoiding an extra continuation just to cast the type of the result.
- close() - function in com.facebook.bolts.CancellationTokenRegistration
- Unregisters the callback runnable from the cancellation token.
- close() - function in com.facebook.bolts.CancellationTokenSource
- com.facebook.bolts - package com.facebook.bolts
- Continuation - class in com.facebook.bolts
- A function to be called after a task completes.
- continueWhile(Callable,Continuation) - function in com.facebook.bolts.Task
- Continues a task with the equivalent of a Task-based while loop, where the body of the loop is a task continuation.
- continueWhile(Callable,Continuation,CancellationToken) - function in com.facebook.bolts.Task
- Continues a task with the equivalent of a Task-based while loop, where the body of the loop is a task continuation.
- continueWhile(Callable,Continuation,Executor,CancellationToken) - function in com.facebook.bolts.Task
- Continues a task with the equivalent of a Task-based while loop, where the body of the loop is a task continuation.
- continueWith(Continuation,Executor) - function in com.facebook.bolts.Task
- Adds a continuation that will be scheduled using the executor, returning a new task that completes after the continuation has finished running.
- continueWith(Continuation,Executor,CancellationToken) - function in com.facebook.bolts.Task
- Adds a continuation that will be scheduled using the executor, returning a new task that completes after the continuation has finished running.
- continueWith(Continuation) - function in com.facebook.bolts.Task
- Adds a synchronous continuation to this task, returning a new task that completes after the continuation has finished running.
- continueWith(Continuation,CancellationToken) - function in com.facebook.bolts.Task
- Adds a synchronous continuation to this task, returning a new task that completes after the continuation has finished running.
- continueWithTask(Continuation,Executor) - function in com.facebook.bolts.Task
- Adds an Task-based continuation to this task that will be scheduled using the executor, returning a new task that completes after the task returned by the continuation has completed.
- continueWithTask(Continuation,Executor,CancellationToken) - function in com.facebook.bolts.Task
- Adds an Task-based continuation to this task that will be scheduled using the executor, returning a new task that completes after the task returned by the continuation has completed.
- continueWithTask(Continuation) - function in com.facebook.bolts.Task
- Adds an asynchronous continuation to this task, returning a new task that completes after the task returned by the continuation has completed.
- continueWithTask(Continuation,CancellationToken) - function in com.facebook.bolts.Task
- Adds an asynchronous continuation to this task, returning a new task that completes after the task returned by the continuation has completed.