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