Java com.google.gwt.user.server.rpc RPC fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.server.rpc RPC fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.server.rpc RPC.

The text is from its open source code.

Method

RPCRequestdecodeRequest(String encodedRequest, Class type, SerializationPolicyProvider serializationPolicyProvider)
Returns an RPCRequest that is built by decoding the contents of an encoded RPC request and optionally validating that type can handle the request.
RPCRequestdecodeRequest(String encodedRequest, Class type)
Returns an RPCRequest that is built by decoding the contents of an encoded RPC request and optionally validating that type can handle the request.
RPCRequestdecodeRequest(String encodedRequest)
Returns an RPCRequest that is built by decoding the contents of an encoded RPC request.
StringencodeResponseForFailure(Method serviceMethod, Throwable cause)
Returns a string that encodes an exception.
StringencodeResponseForFailure(Method serviceMethod, Throwable cause, SerializationPolicy serializationPolicy)
Returns a string that encodes an exception.
StringencodeResponseForFailure(Method serviceMethod, Throwable cause, SerializationPolicy serializationPolicy, int flags)
StringencodeResponseForSuccess(Method serviceMethod, Object object, SerializationPolicy serializationPolicy, int flags)
StringencodeResponseForSuccess(Method serviceMethod, Object object, SerializationPolicy serializationPolicy)
Returns a string that encodes the object.
StringencodeResponseForSuccess(Method serviceMethod, Object object)
Returns a string that encodes the object.
SerializationPolicygetDefaultSerializationPolicy()
Returns a default serialization policy.
StringinvokeAndEncodeResponse(Object target, Method serviceMethod, Object[] args, SerializationPolicy serializationPolicy)
Returns a string that encodes the result of calling a service method, which could be the value returned by the method or an exception thrown by it.
StringinvokeAndEncodeResponse(Object target, Method serviceMethod, Object[] args)
Returns a string that encodes the result of calling a service method, which could be the value returned by the method or an exception thrown by it.
StringinvokeAndEncodeResponse(Object target, Method serviceMethod, Object[] args, SerializationPolicy serializationPolicy, int flags)