Example #1
0
 public InetSocketAddress getClientAddress() {
   return body.getRpcOption().getClientAddress();
 }
Example #2
0
 public InetSocketAddress getServerAddress() {
   return body.getRpcOption().getServerAddress();
 }
Example #3
0
 public void setClientAddress(InetSocketAddress clientAddress) {
   body.getRpcOption().setClientAddress(clientAddress);
 }
Example #4
0
 public void setRpcTimeoutInMillis(int rpcTimeoutInMillis) {
   body.getRpcOption().setRpcTimeoutInMillis(rpcTimeoutInMillis);
 }
Example #5
0
 public void setServerAddress(InetSocketAddress serverAddress) {
   body.getRpcOption().setServerAddress(serverAddress);
 }
Example #6
0
 public void setException(Exception e) {
   body.setException(e);
 }
Example #7
0
 public int getRpcTimeoutInMillis() {
   return body.getRpcOption().getRpcTimeoutInMillis();
 }
Example #8
0
 public String getRpcId() {
   return body.getRpcId();
 }
Example #9
0
 public Exception getException() {
   return body.getException();
 }
Example #10
0
 public void setRpcId(String rpcId) {
   body.setRpcId(rpcId);
 }
Example #11
0
 public Map<String, String> getAttachments() {
   return body.getAttachments();
 }
Example #12
0
 public void setAttachments(Map<String, String> attachments) {
   body.setAttachments(attachments);
 }
Example #13
0
 public void setReturnObject(Object returnObject) {
   body.setReturnObject(returnObject);
 }
Example #14
0
 public Object getReturnObject() {
   return body.getReturnObject();
 }