getConfig method

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

Implementation

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