Пример #1
0
            public ThriftS.IDL.ThriftSResponse recv_Ping()
            {
                TMessage msg = iprot_.ReadMessageBegin();

                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                Ping_result result = new Ping_result();

                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return(result.Success);
                }
                if (result.__isset.badRequestException)
                {
                    throw result.BadRequestException;
                }
                if (result.__isset.internalServerException)
                {
                    throw result.InternalServerException;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "Ping failed: unknown result");
            }
Пример #2
0
            public void Ping_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                Ping_args args = new Ping_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                Ping_result result = new Ping_result();

                try {
                    result.Success = iface_.Ping(args.Request);
                } catch (ThriftS.IDL.BadRequestException badRequestException) {
                    result.BadRequestException = badRequestException;
                } catch (ThriftS.IDL.InternalServerException internalServerException) {
                    result.InternalServerException = internalServerException;
                }
                oprot.WriteMessageBegin(new TMessage("Ping", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
Пример #3
0
 public void Ping_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     Ping_args args = new Ping_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     Ping_result result = new Ping_result();
     try {
         result.Success = iface_.Ping();
     } catch (AsapiException asapiEx) {
         result.AsapiEx = asapiEx;
     }
     oprot.WriteMessageBegin(new TMessage("Ping", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
Пример #4
0
 public int recv_Ping()
 {
     TMessage msg = iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception) {
         TApplicationException x = TApplicationException.Read(iprot_);
         iprot_.ReadMessageEnd();
         throw x;
     }
     Ping_result result = new Ping_result();
     result.Read(iprot_);
     iprot_.ReadMessageEnd();
     if (result.__isset.success) {
         return result.Success;
     }
     if (result.__isset.asapiEx) {
         throw result.AsapiEx;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "Ping failed: unknown result");
 }