Apache.Hadoop.Thriftfs.Api.ThriftHadoopFileSystem.Processor.append_Process C# (CSharp) Method

append_Process() public method

public append_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void append_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                append_args args = new append_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                append_result result = new append_result();
                try {
                  result.Success = iface_.append(args.Path);
                } catch (ThriftIOException ouch) {
                  result.Ouch = ouch;
                }
                oprot.WriteMessageBegin(new TMessage("append", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }