Package com.tangosol.util
Class NullImplementation.NullContinuation<R>
- java.lang.Object
-
- com.tangosol.util.NullImplementation.NullContinuation<R>
-
- Type Parameters:
R
-
- All Implemented Interfaces:
Continuation<R>
- Enclosing class:
- NullImplementation
public static class NullImplementation.NullContinuation<R> extends Object implements Continuation<R>
A Continuation that does nothing.
-
-
Field Summary
Fields Modifier and Type Field Description static NullImplementation.NullContinuation
INSTANCE
Singleton instance of a NullContinuation.
-
Constructor Summary
Constructors Constructor Description NullContinuation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
proceed(R r)
Resume the execution after the completion of an asynchronous call.
-
-
-
Field Detail
-
INSTANCE
public static final NullImplementation.NullContinuation INSTANCE
Singleton instance of a NullContinuation.
-
-
Method Detail
-
proceed
public void proceed(R r)
Resume the execution after the completion of an asynchronous call.- Specified by:
proceed
in interfaceContinuation<R>
- Parameters:
r
- the result of the execution preceding this continuation
-
-