setConfig method

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

Implementation

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