dropZone method

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

Implementation

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