Exemple #1
0
            public void GetActiveNodes_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                GetActiveNodes_args args = new GetActiveNodes_args();

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

                try
                {
                    result.Success = iface_.GetActiveNodes();
                    oprot.WriteMessageBegin(new TMessage("GetActiveNodes", 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("GetActiveNodes", TMessageType.Exception, seqid));
                    x.Write(oprot);
                }
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
Exemple #2
0
            public ActiveNodesResult recv_GetActiveNodes()
            {
                TMessage msg = iprot_.ReadMessageBegin();

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

                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return(result.Success);
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "GetActiveNodes failed: unknown result");
            }