Class LowLevelResultListener<R>
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.document.LowLevelResultListener<R>
-
- Type Parameters:
R
- low level result type
public abstract class LowLevelResultListener<R> extends Object
Can be used to listen to the event of receiving a low level result of type R from the server side.
-
-
Field Summary
Fields Modifier and Type Field Description static LowLevelResultListener<?>
NONE
-
Constructor Summary
Constructors Constructor Description LowLevelResultListener()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static <T> LowLevelResultListener<T>
none()
abstract void
onLowLevelResult(R lowLevelResult)
-
-
-
Field Detail
-
NONE
public static final LowLevelResultListener<?> NONE
-
-
Method Detail
-
none
public static <T> LowLevelResultListener<T> none()
-
onLowLevelResult
public abstract void onLowLevelResult(R lowLevelResult)
-
-