Package com.google.gwt.user.client.rpc
Interface HasRpcToken
-
public interface HasRpcToken
An interface implemented by client-side RPC proxy objects. Cast the object returned fromGWT.create(Class)
on aRemoteService
to this interface to setRpcToken
andRpcTokenExceptionHandler
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RpcToken
getRpcToken()
Return RPC token used with this RPC instance.RpcTokenExceptionHandler
getRpcTokenExceptionHandler()
Return RPC token exception handler used with this RPC instance.void
setRpcToken(RpcToken token)
Sets theRpcToken
to be included with each RPC call.void
setRpcTokenExceptionHandler(RpcTokenExceptionHandler handler)
Sets the handler for exceptions that occurred during RPC token processing.
-
-
-
Method Detail
-
getRpcToken
RpcToken getRpcToken()
Return RPC token used with this RPC instance.- Returns:
- RPC token or
null
if none set.
-
getRpcTokenExceptionHandler
RpcTokenExceptionHandler getRpcTokenExceptionHandler()
Return RPC token exception handler used with this RPC instance.- Returns:
- Exception handler or
null
if none set.
-
setRpcTokenExceptionHandler
void setRpcTokenExceptionHandler(RpcTokenExceptionHandler handler)
Sets the handler for exceptions that occurred during RPC token processing.
-
-