FluentCassandra.Apache.Cassandra.Cassandra.system_update_column_family_result.Write(TProtocol)

Here are the examples of the csharp api class FluentCassandra.Apache.Cassandra.Cassandra.system_update_column_family_result.Write(TProtocol) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: fluentcassandra
Source File: Cassandra.cs
public void system_update_column_family_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        system_update_column_family_args args = new system_update_column_family_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        system_update_column_family_result result = new system_update_column_family_result();
        try {
          result.Success = iface_.system_update_column_family(args.Cf_def);
        } catch (InvalidRequestException ire) {
          result.Ire = ire;
        } catch (SchemaDisagreementException sde) {
          result.Sde = sde;
        }
        oprot.WriteMessageBegin(new TMessage("system_update_column_family", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }