You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/r2dbc/postgresql/ExtendedFlowDelegate.java
+23-23
Original file line number
Diff line number
Diff line change
@@ -76,21 +76,21 @@ class ExtendedFlowDelegate {
76
76
* Execute the {@code Parse/Bind/Describe/Execute/Sync} portion of the <a href="https://www.postgresql.org/docs/current/static/protocol-flow.html#PROTOCOL-FLOW-EXT-QUERY">Extended query</a>
77
77
* message flow.
78
78
*
79
-
* @param resources the {@link ConnectionResources} providing access to the {@link Client}
80
-
* @param factory the {@link ExceptionFactory}
81
-
* @param query the query to execute
82
-
* @param binding the {@link Binding} to bind
83
-
* @param values the binding values
84
-
* @param fetchSize the fetch size to apply. Use a single {@link Execute} with fetch all if {@code fetchSize} is zero. Otherwise, perform multiple roundtrips with smaller
85
-
* {@link Execute} sizes.
79
+
* @param resources the {@link ConnectionResources} providing access to the {@link Client}
80
+
* @param factory the {@link ExceptionFactory}
81
+
* @param query the query to execute
82
+
* @param binding the {@link Binding} to bind
83
+
* @param values the binding values
84
+
* @param fetchSize the fetch size to apply. Use a single {@link Execute} with fetch all if {@code fetchSize} is zero. Otherwise, perform multiple roundtrips with smaller
85
+
* {@link Execute} sizes.
86
+
* @param isCanceled whether the conversation is canceled
86
87
* @return the messages received in response to the exchange
87
88
* @throws IllegalArgumentException if {@code bindings}, {@code client}, {@code portalNameSupplier}, or {@code statementName} is {@code null}
@@ -210,16 +210,16 @@ private static Flux<BackendMessage> fetchCursoredWithSync(ExtendedFlowOperator o
210
210
* Execute a contiguous query and indicate to fetch rows in chunks with the {@link Execute} message. Uses {@link Flush}-based synchronization that creates a cursor. Note that flushing keeps the
211
211
* cursor open even with implicit transactions and this method may not work with newer pgpool implementations.
212
212
*
213
-
* @param operator the flow operator
214
-
* @param client client to use
215
-
* @param portal the portal
216
-
* @param fetchSize fetch size per roundtrip
213
+
* @param operator the flow operator
214
+
* @param client client to use
215
+
* @param portal the portal
216
+
* @param fetchSize fetch size per roundtrip
217
+
* @param isCanceled whether the conversation is canceled
0 commit comments