Apache.Cassandra.Cassandra.Processor.prepare_cql3_query_Process C# (CSharp) Method

prepare_cql3_query_Process() public method

public prepare_cql3_query_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void prepare_cql3_query_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        prepare_cql3_query_args args = new prepare_cql3_query_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        prepare_cql3_query_result result = new prepare_cql3_query_result();
        try {
          result.Success = iface_.prepare_cql3_query(args.Query, args.Compression);
        } catch (InvalidRequestException ire) {
          result.Ire = ire;
        }
        oprot.WriteMessageBegin(new TMessage("prepare_cql3_query", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }