createFTIndex method

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

Implementation

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