[ 
https://issues.apache.org/jira/browse/THRIFT-4088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Edward Capriolo updated THRIFT-4088:
------------------------------------
    Description: 
./lib/java/src/org/apache/thrift/TServiceClient.java

{noformat}
  protected void receiveBase(TBase<?,?> result, String methodName) throws 
TException {
    TMessage msg = iprot_.readMessageBegin();
    if (msg.type == TMessageType.EXCEPTION) {
      TApplicationException x = new TApplicationException();
      x.read(iprot_);
      iprot_.readMessageEnd();
      throw x;
    }
    System.out.format("Received %d%n", msg.seqid);
    if (msg.seqid != seqid_) {
      throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID,
          String.format("%s failed: out of sequence response: expected %d but 
got %d", methodName, seqid_, msg.seqid));
    }
    result.read(iprot_);
    iprot_.readMessageEnd();
  }

{noformat}

> System.out in happy path
> ------------------------
>
>                 Key: THRIFT-4088
>                 URL: https://issues.apache.org/jira/browse/THRIFT-4088
>             Project: Thrift
>          Issue Type: Improvement
>            Reporter: Edward Capriolo
>
> ./lib/java/src/org/apache/thrift/TServiceClient.java
> {noformat}
>   protected void receiveBase(TBase<?,?> result, String methodName) throws 
> TException {
>     TMessage msg = iprot_.readMessageBegin();
>     if (msg.type == TMessageType.EXCEPTION) {
>       TApplicationException x = new TApplicationException();
>       x.read(iprot_);
>       iprot_.readMessageEnd();
>       throw x;
>     }
>     System.out.format("Received %d%n", msg.seqid);
>     if (msg.seqid != seqid_) {
>       throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID,
>           String.format("%s failed: out of sequence response: expected %d but 
> got %d", methodName, seqid_, msg.seqid));
>     }
>     result.read(iprot_);
>     iprot_.readMessageEnd();
>   }
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to