コード例 #1
0
ファイル: UserService.cs プロジェクト: huruiyi/MicroServices
            public void Get_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                Get_args args = new Get_args();

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

                try
                {
                    result.Success = iface_.@Get(args.Id);
                    oprot.WriteMessageBegin(new TMessage("Get", TMessageType.Reply, seqid));
                    result.Write(oprot);
                }
                catch (TTransportException)
                {
                    throw;
                }
                catch (Exception ex)
                {
                    Console.Error.WriteLine("Error occurred in processor:");
                    Console.Error.WriteLine(ex.ToString());
                    TApplicationException x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error.");
                    oprot.WriteMessageBegin(new TMessage("Get", TMessageType.Exception, seqid));
                    x.Write(oprot);
                }
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
コード例 #2
0
        public void Get_Process(int seqid, TProtocol iprot, TProtocol oprot)
        {
            Get_args args = new Get_args();

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

            result.Success = iface_.@Get(args.Id);
            oprot.WriteMessageBegin(new TMessage("Get", TMessageType.Reply, seqid));
            result.Write(oprot);
            oprot.WriteMessageEnd();
            oprot.Transport.Flush();
        }
コード例 #3
0
        public void send_Get(int id)
#endif
        {
            oprot_.WriteMessageBegin(new TMessage("Get", TMessageType.Call, seqid_));
            Get_args args = new Get_args();

            args.Id = id;
            args.Write(oprot_);
            oprot_.WriteMessageEnd();
#if SILVERLIGHT
            return(oprot_.Transport.BeginFlush(callback, state));
      #else
            oprot_.Transport.Flush();
#endif
        }
コード例 #4
0
 public void Get_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     Get_args args = new Get_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     Get_result result = new Get_result();
     result.Success = iface_.@Get(args.Id);
     oprot.WriteMessageBegin(new TMessage("Get", TMessageType.Reply, seqid)); 
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
コード例 #5
0
            public void send_Get(int id)
#endif
            {
                oprot_.WriteMessageBegin(new TMessage("Get", TMessageType.Call, seqid_));
                Get_args args = new Get_args();
                args.Id = id;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
#if SILVERLIGHT
      return oprot_.Transport.BeginFlush(callback, state);
      #else
                oprot_.Transport.Flush();
#endif
            }
コード例 #6
0
ファイル: C4.cs プロジェクト: cosh/C4
 public void Get_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   Get_args args = new Get_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   Get_result result = new Get_result();
   try {
     result.Success = iface_.Get(args.RowId, args.ColumnId);
   } catch (InvalidRequestException ire) {
     result.Ire = ire;
   }
   oprot.WriteMessageBegin(new TMessage("Get", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }