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