Interface Callbackable<T>
-
- Type Parameters:
T- generic type
public interface Callbackable<T>Interface for class having a Callback that must be called by async request at the end of execution
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcallbackResponse(T returnArguments)Must be called by async request at the end of execution
-
-
-
Method Detail
-
callbackResponse
void callbackResponse(T returnArguments)
Must be called by async request at the end of execution- Parameters:
returnArguments- the arguments to be returned
-
-