T
- the callback result type. Depends on the function you're calling.public interface Callback<T>
onCall()
method and put your code there. Once the server receives the results from the player,
the onCall()
method of this callback will be called.onCall()
method. Usually this is the actual result of the original
function call.Modifier and Type | Method and Description |
---|---|
void |
onCall(T result)
This method will be called once the server received the results from the client.
|
void onCall(T result)
result
- the actual result the server received from the client.