killQuery method

dynamic killQuery(
  1. int seqid,
  2. TProtocol iprot,
  3. TProtocol oprot
)

Implementation

killQuery(int seqid, TProtocol iprot, TProtocol oprot) async {
  killQuery_args args = new killQuery_args();
  args.read(iprot);
  iprot.readMessageEnd();
  killQuery_result result = new killQuery_result();
  result.success = await iface_.killQuery(args.req);
  oprot.writeMessageBegin(
      new TMessage("killQuery", TMessageType.REPLY, seqid));
  result.write(oprot);
  oprot.writeMessageEnd();
  oprot.trans_.flush();
}