Uses of Interface
org.neo4j.driver.Record
Package
Description
-
Uses of Record in org.neo4j.driver
Modifier and TypeMethodDescriptionResult.next()
Navigate to and retrieve the nextRecord
in this result.Result.peek()
Investigate the next upcoming record without moving forward in the result.Result.single()
Return the first record in the result, failing if there is not exactly one record left in the streamModifier and TypeMethodDescriptionRecords.column
(int index) Returns a function mapping record to a value from a given index.Returns a function mapping record to a value of a target type from a given index.Returns a function mapping record to a value from a given key.Returns a function mapping record to a value of a target type from a given key.Result.list()
Retrieve and store the entire result stream.EagerResult.records()
Returns the list of records this result contains.Result.stream()
Convert this result to a sequentialStream
of records.Modifier and TypeMethodDescriptionRun a query and return a result stream.Modifier and TypeMethodDescriptiondefault <T> T
<A,
R, T> T ExecutableQuery.execute
(Collector<Record, A, R> recordCollector, ExecutableQuery.ResultFinisher<R, T> resultFinisher) Executes query, collectsRecord
values using the providedCollector
and produces a final result by invoking the providedBiFunction
with the collected result andResultSummary
values.<T> List<T>
Retrieve and store a projection of the entire result. -
Uses of Record in org.neo4j.driver.async
Modifier and TypeMethodDescriptionResultCursor.listAsync()
Asynchronously retrieve and store the entire result stream.ResultCursor.nextAsync()
Asynchronously navigate to and retrieve the nextRecord
in this result.ResultCursor.peekAsync()
Asynchronously investigate the next upcomingRecord
without moving forward in the result.ResultCursor.singleAsync()
Asynchronously return the first record in the result, failing if there is not exactly one record left in the stream.Modifier and TypeMethodDescriptionRun a query asynchronously and return aCompletionStage
with a result cursor.Modifier and TypeMethodDescriptionResultCursor.forEachAsync
(Consumer<Record> action) Asynchronously apply the givenaction
to every record in the result, yielding a summary of it.<T> CompletionStage<List<T>>
Asynchronously retrieve and store a projection of the entire result. -
Uses of Record in org.neo4j.driver.internal.async
-
Uses of Record in org.neo4j.driver.internal.cluster
-
Uses of Record in org.neo4j.driver.internal.cursor
Modifier and TypeMethodDescriptionAsyncResultCursorImpl.listAsync()
DisposableAsyncResultCursor.listAsync()
AsyncResultCursorImpl.nextAsync()
DisposableAsyncResultCursor.nextAsync()
AsyncResultCursorImpl.peekAsync()
DisposableAsyncResultCursor.peekAsync()
AsyncResultCursorImpl.singleAsync()
DisposableAsyncResultCursor.singleAsync()
Modifier and TypeMethodDescriptionAsyncResultCursorImpl.forEachAsync
(Consumer<Record> action) DisposableAsyncResultCursor.forEachAsync
(Consumer<Record> action) void
RxResultCursor.installRecordConsumer
(BiConsumer<Record, Throwable> recordConsumer) void
RxResultCursorImpl.installRecordConsumer
(BiConsumer<Record, Throwable> recordConsumer) <T> CompletionStage<List<T>>
<T> CompletionStage<List<T>>
-
Uses of Record in org.neo4j.driver.internal.handlers
Modifier and TypeMethodDescriptionLegacyPullAllResponseHandler.nextAsync()
PullAllResponseHandler.nextAsync()
LegacyPullAllResponseHandler.peekAsync()
PullAllResponseHandler.peekAsync()
-
Uses of Record in org.neo4j.driver.internal.handlers.pulln
Modifier and TypeMethodDescriptionAutoPullResponseHandler.nextAsync()
AutoPullResponseHandler.peekAsync()
Modifier and TypeMethodDescriptionvoid
BasicPullResponseHandler.installRecordConsumer
(BiConsumer<Record, Throwable> recordConsumer) void
PullResponseHandler.installRecordConsumer
(BiConsumer<Record, Throwable> recordConsumer) Register a record consumer for each record received.<T> CompletionStage<List<T>>
-
Uses of Record in org.neo4j.driver.internal.reactive
-
Uses of Record in org.neo4j.driver.internal.reactivestreams
Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<Record>
InternalReactiveResult.records()
-
Uses of Record in org.neo4j.driver.internal.util
-
Uses of Record in org.neo4j.driver.reactive
Modifier and TypeMethodDescriptionReactiveResult.records()
Returns a cold unicast publisher of records.org.reactivestreams.Publisher<Record>
RxResult.records()
Deprecated.Returns a cold unicast publisher of records.Modifier and TypeMethodDescriptionstatic Value
RxQueryRunner.parameters
(Record record) Deprecated.Creates a value from a record instance.Register running of a query and return a publisher ofReactiveResult
.default RxResult
Deprecated.Register running of a query and return a reactive result stream. -
Uses of Record in org.neo4j.driver.reactivestreams
Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<Record>
ReactiveResult.records()
Returns a cold unicast publisher of records.Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<ReactiveResult>
Register running of a query and return a publisher ofReactiveResult
.