Exemple #1
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();

                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();
            }
        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();
        }
Exemple #3
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();
 }
Exemple #4
0
Fichier : C4.cs Projet : 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();
 }