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