Uses of Interface
org.neo4j.driver.Record
Packages that use Record
Package
Description
-
Uses of Record in org.neo4j.driver
Methods in org.neo4j.driver that return RecordModifier 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 streamMethods in org.neo4j.driver that return types with arguments of type RecordModifier 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.Methods in org.neo4j.driver with parameters of type RecordModifier and TypeMethodDescriptionRun a query and return a result stream.Method parameters in org.neo4j.driver with type arguments of type RecordModifier 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
Methods in org.neo4j.driver.async that return types with arguments of type RecordModifier 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.Methods in org.neo4j.driver.async with parameters of type RecordModifier and TypeMethodDescriptionRun a query asynchronously and return aCompletionStage
with a result cursor.Method parameters in org.neo4j.driver.async with type arguments of type RecordModifier 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
Methods in org.neo4j.driver.internal.async with parameters of type Record -
Uses of Record in org.neo4j.driver.internal.cluster
Methods in org.neo4j.driver.internal.cluster that return types with arguments of type RecordMethods in org.neo4j.driver.internal.cluster with parameters of type RecordConstructor parameters in org.neo4j.driver.internal.cluster with type arguments of type Record -
Uses of Record in org.neo4j.driver.internal.cursor
Methods in org.neo4j.driver.internal.cursor that return types with arguments of type RecordModifier and TypeMethodDescriptionAsyncResultCursorImpl.listAsync()
DisposableAsyncResultCursor.listAsync()
AsyncResultCursorImpl.nextAsync()
DisposableAsyncResultCursor.nextAsync()
AsyncResultCursorImpl.peekAsync()
DisposableAsyncResultCursor.peekAsync()
AsyncResultCursorImpl.singleAsync()
DisposableAsyncResultCursor.singleAsync()
Method parameters in org.neo4j.driver.internal.cursor with type arguments of type RecordModifier 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
Methods in org.neo4j.driver.internal.handlers that return types with arguments of type RecordModifier and TypeMethodDescriptionLegacyPullAllResponseHandler.nextAsync()
PullAllResponseHandler.nextAsync()
LegacyPullAllResponseHandler.peekAsync()
PullAllResponseHandler.peekAsync()
Method parameters in org.neo4j.driver.internal.handlers with type arguments of type Record -
Uses of Record in org.neo4j.driver.internal.handlers.pulln
Methods in org.neo4j.driver.internal.handlers.pulln that return types with arguments of type RecordModifier and TypeMethodDescriptionAutoPullResponseHandler.nextAsync()
AutoPullResponseHandler.peekAsync()
Method parameters in org.neo4j.driver.internal.handlers.pulln with type arguments of type RecordModifier 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
Methods in org.neo4j.driver.internal.reactive that return types with arguments of type Record -
Uses of Record in org.neo4j.driver.internal.reactivestreams
Methods in org.neo4j.driver.internal.reactivestreams that return types with arguments of type RecordModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<Record>
InternalReactiveResult.records()
Methods in org.neo4j.driver.internal.reactivestreams with parameters of type Record -
Uses of Record in org.neo4j.driver.internal.util
Methods in org.neo4j.driver.internal.util with parameters of type Record -
Uses of Record in org.neo4j.driver.reactive
Methods in org.neo4j.driver.reactive that return types with arguments of type RecordModifier and TypeMethodDescriptionReactiveResult.records()
Returns a cold unicast publisher of records.org.reactivestreams.Publisher<Record>
RxResult.records()
Deprecated.Returns a cold unicast publisher of records.Methods in org.neo4j.driver.reactive with parameters of type RecordModifier 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
Methods in org.neo4j.driver.reactivestreams that return types with arguments of type RecordModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<Record>
ReactiveResult.records()
Returns a cold unicast publisher of records.Methods in org.neo4j.driver.reactivestreams with parameters of type RecordModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<ReactiveResult>
Register running of a query and return a publisher ofReactiveResult
.