Apache.Hadoop.Thriftfs.Api.ThriftHadoopFileSystem.Processor.listStatus_Process C# (CSharp) Méthode

listStatus_Process() public méthode

public listStatus_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
Résultat void
            public void listStatus_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                listStatus_args args = new listStatus_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                listStatus_result result = new listStatus_result();
                try {
                  result.Success = iface_.listStatus(args.Path);
                } catch (ThriftIOException ouch) {
                  result.Ouch = ouch;
                }
                oprot.WriteMessageBegin(new TMessage("listStatus", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }