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
BREAKING CHANGE: the `org.neo4j.driver.reactive.RxSession` has been deleted, please use either the `org.neo4j.driver.reactivestreams.ReactiveSession` (Reactive Streams API) or the `org.neo4j.driver.reactive.ReactiveSession` (Java Flow API).
* Create a new general purpose {@link RxSession} with default {@link SessionConfig session configuration}. The {@link RxSession} provides a reactive way to
252
-
* run queries and process results.
253
-
* <p>
254
-
* Alias to {@link #rxSession(SessionConfig)}}.
255
-
*
256
-
* @return a new {@link RxSession} object.
257
-
* @deprecated superseded by {@link #session(Class)}
258
-
*/
259
-
@Deprecated
260
-
defaultRxSessionrxSession() {
261
-
returnsession(RxSession.class);
262
-
}
263
-
264
-
/**
265
-
* Create a new {@link RxSession} with a specified {@link SessionConfig session configuration}. Use {@link SessionConfig#forDatabase(String)} to obtain a
266
-
* general purpose session configuration for the specified database. The {@link RxSession} provides a reactive way to run queries and process results.
267
-
*
268
-
* @param sessionConfig used to customize the session.
269
-
* @return a new {@link RxSession} object.
270
-
* @deprecated superseded by {@link #session(Class, SessionConfig)}
* Create a new general purpose {@link ReactiveSession} with default {@link SessionConfig session configuration}. The {@link ReactiveSession} provides a
279
243
* reactive way to run queries and process results.
280
-
* <p>
281
-
* Alias to {@link #rxSession(SessionConfig)}}.
282
244
*
283
245
* @return a new {@link ReactiveSession} object.
284
246
* @deprecated superseded by {@link #session(Class)}
0 commit comments