Package com.linkedin.r2.sample.echo.rpc

Source Code of com.linkedin.r2.sample.echo.rpc.RpcEchoClient

/*
   Copyright (c) 2012 LinkedIn Corp.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

/* $Id$ */
package com.linkedin.r2.sample.echo.rpc;

import com.linkedin.data.ByteString;
import com.linkedin.common.callback.Callback;
import com.linkedin.common.callback.CallbackAdapter;
import com.linkedin.r2.message.rpc.RpcRequest;
import com.linkedin.r2.message.rpc.RpcRequestBuilder;
import com.linkedin.r2.message.rpc.RpcResponse;
import com.linkedin.r2.sample.echo.EchoService;
import com.linkedin.r2.transport.common.Client;

import java.net.URI;

/**
* @author Chris Pettitt
* @version $Revision$
*/
public class RpcEchoClient implements EchoService
{
  private final URI _uri;
  private final Client _client;

  @Deprecated
  public RpcEchoClient(URI uri, Client client)
  {
    _uri = uri;
    _client = client;
  }

  @Override
  @Deprecated
  @SuppressWarnings("deprecation")
  public void echo(String msg, final Callback<String> callback)
  {
    final RpcRequest request = new RpcRequestBuilder(_uri)
            .setEntity(ByteString.copyString(msg, RpcEchoServer.CHARSET))
            .build();

    _client.rpcRequest(request, new CallbackAdapter<String, RpcResponse>(callback)
    {
      @Override
      protected String convertResponse(RpcResponse response) throws Exception
      {
        return response.getEntity().asString(RpcEchoServer.CHARSET);
      }
    });
  }
}
TOP

Related Classes of com.linkedin.r2.sample.echo.rpc.RpcEchoClient

TOP
Copyright © 2018 www.massapi.com. 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.