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