Uses of Class
org.apache.tinkerpop.gremlin.driver.Result
-
Packages that use Result Package Description org.apache.tinkerpop.gremlin.driver -
-
Uses of Result in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return Result Modifier and Type Method Description ResultResultSet. one()Get the nextResultfrom the stream, blocking until one is available.Methods in org.apache.tinkerpop.gremlin.driver that return types with arguments of type Result Modifier and Type Method Description CompletableFuture<List<Result>>ResultSet. all()The returnedCompletableFuturecompletes when all reads are complete for this request and the entire result has been accounted for on the client.CompletableFuture<List<Result>>ResultQueue. await(int items)Iterator<Result>ResultSet. iterator()Returns a blocking iterator of the items streaming from the server to the client.CompletableFuture<List<Result>>ResultSet. some(int items)The returnedCompletableFuturecompletes when the number of items specified are available.Stream<Result>ResultSet. stream()Stream items with a blocking iterator.Methods in org.apache.tinkerpop.gremlin.driver with parameters of type Result Modifier and Type Method Description voidResultQueue. add(Result result)Constructor parameters in org.apache.tinkerpop.gremlin.driver with type arguments of type Result Constructor Description ResultQueue(LinkedBlockingQueue<Result> resultLinkedBlockingQueue, CompletableFuture<Void> readComplete)
-