public CalculonDb.Result Insert(CalculonDb.Entry entry)
 {
     send_Insert(entry);
     return recv_Insert();
 }
Esempio n. 2
0
 public void send_Aggregate(CalculonDb.Entry entry)
 {
     oprot_.WriteMessageBegin(new TMessage("Aggregate", TMessageType.Call, seqid_));
     Aggregate_args args = new Aggregate_args();
     args.Entry = entry;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }
 public void send_Insert(CalculonDb.Entry entry)
 {
     oprot_.WriteMessageBegin(new TMessage("Insert", TMessageType.Call, seqid_));
     Insert_args args = new Insert_args();
     args.Entry = entry;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }
Esempio n. 4
0
 public void Aggregate(CalculonDb.Entry entry)
 {
     send_Aggregate(entry);
     recv_Aggregate();
 }