- All Superinterfaces:
org.neo4j.driver.internal.FailableCursor
,org.reactivestreams.Subscription
- All Known Implementing Classes:
RxResultCursorImpl
public interface RxResultCursor
extends org.reactivestreams.Subscription, org.neo4j.driver.internal.FailableCursor
-
Method Summary
Modifier and TypeMethodDescriptionvoid
installRecordConsumer
(BiConsumer<Record, Throwable> recordConsumer) boolean
isDone()
keys()
rollback()
Rolls back this instance by releasing connection with RESET.Methods inherited from interface org.neo4j.driver.internal.FailableCursor
discardAllFailureAsync, pullAllFailureAsync
Methods inherited from interface org.reactivestreams.Subscription
cancel, request
-
Method Details
-
keys
-
installRecordConsumer
-
summaryAsync
CompletionStage<ResultSummary> summaryAsync() -
isDone
boolean isDone() -
getRunError
Throwable getRunError() -
rollback
CompletionStage<Void> rollback()Rolls back this instance by releasing connection with RESET.This must never be called on a published instance.
- Returns:
- reset completion stage
- Since:
- 5.11
-