Package com.baidu.rpc

Examples of com.baidu.rpc.McpackProcessor


   * (non-Javadoc)
   *
   * @see com.baidu.rpc.client.RpcProxyBase#deserialize(byte[])
   */
  protected JsonElement deserialize(byte[] req) throws ParseErrorException {
    return  new McpackProcessor().deserialize(encoding, req);
  }
View Full Code Here


   *
   * @see
   * com.baidu.rpc.client.RpcProxyBase#serialize(com.google.gson.JsonElement)
   */
  protected byte[] serialize(JsonElement res) throws ParseErrorException {
    return  new McpackProcessor().serialize(encoding, res);
  }
View Full Code Here

TOP

Related Classes of com.baidu.rpc.McpackProcessor

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.