Java com.google.common.util.concurrent FutureCallback fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.util.concurrent FutureCallback fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.util.concurrent FutureCallback.

The text is from its open source code.

Implementation

com.google.common.util.concurrent.FutureCallback has the following implementations.
Click this link to see all its implementation.

Constructor

Method

ClassgetClass()
Returns the runtime class of this Object .
voidonFailure(Throwable t)
Invoked when a Future computation fails or is canceled.
voidonSuccess(@Nullable V result)
Invoked with the result of the Future computation when it is successful.