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