Package rocket.remoting.client.support.rpc

Examples of rocket.remoting.client.support.rpc.RpcServiceClient


   *            The username to set
   * @param password
   *            The password to set
   */
  public static void setCredentials(final Object client, final String username, final String password) {
    final RpcServiceClient rpcServiceClient = Rpc.getServiceClient(client);
    rpcServiceClient.setUsername(username);
    rpcServiceClient.setPassword(password);
  }
View Full Code Here


   *            A rpc client
   * @param timeout
   *            Timeout value in milliseconds
   */
  public static void setTimeout(final Object client, final int timeout) {
    final RpcServiceClient rpcServiceClient = Rpc.getServiceClient(client);
    rpcServiceClient.setTimeout(timeout);
  }
View Full Code Here

TOP

Related Classes of rocket.remoting.client.support.rpc.RpcServiceClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.