public void get_Process(int seqid, TProtocol iprot, TProtocol oprot)
{
get_args args = new get_args();
args.Read(iprot);
iprot.ReadMessageEnd();
get_result result = new get_result();
try {
result.success = iface_.get(args.tableName, args.row, args.column);
result.__isset.success = true;
} catch (IOError io) {
result.io = io;
result.__isset.io = true;
} catch (NotFound nf) {
result.nf = nf;
result.__isset.nf = true;
}
oprot.WriteMessageBegin(new TMessage("get", TMessageType.Reply, seqid));
result.Write(oprot);
oprot.WriteMessageEnd();
oprot.Transport.Flush();
}