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 Result
ResultSet. one()
Get the nextResult
from 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 returnedCompletableFuture
completes when all reads are complete for this request and the entire result has been accounted for on the client.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 returnedCompletableFuture
completes when the number of items specified are available.Stream<Result>
ResultSet. stream()
Stream items with a blocking iterator.
-