Interface MutinyImplementor
-
@Deprecated public interface MutinyImplementor
Deprecated.It will be removed
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Mutiny.SessionnewSession()Deprecated.Obtain a newreactive session, the main interaction point between the user's program and Hibernate Reactive.Mutiny.SessionnewSession(String tenantId)Deprecated.Obtain a newreactive sessionfor a specified tenant.Mutiny.StatelessSessionnewStatelessSession()Deprecated.Obtain areactive stateless session.Mutiny.StatelessSessionnewStatelessSession(String tenantId)Deprecated.Obtain areactive stateless session.
-
-
-
Method Detail
-
newSession
Mutiny.Session newSession()
Deprecated.Obtain a newreactive session, the main interaction point between the user's program and Hibernate Reactive.The underlying database connection is obtained lazily when the returned
Mutiny.Sessionneeds to access the database.The client must explicitly close the session by calling
Mutiny.Closeable.close().
-
newSession
Mutiny.Session newSession(String tenantId)
Deprecated.Obtain a newreactive sessionfor a specified tenant.The underlying database connection is obtained lazily when the returned
Mutiny.Sessionneeds to access the database.The client must explicitly close the session by calling
Mutiny.Closeable.close().- Parameters:
tenantId- the id of the tenant- See Also:
Mutiny.SessionFactory.withSession(String, Function),Mutiny.SessionFactory.openSession(String)
-
newStatelessSession
Mutiny.StatelessSession newStatelessSession()
Deprecated.Obtain areactive stateless session.The underlying database connection is obtained lazily when the returned
Mutiny.StatelessSessionneeds to access the database.The client must explicitly close the session by calling
Mutiny.StatelessSession.close().
-
newStatelessSession
Mutiny.StatelessSession newStatelessSession(String tenantId)
Deprecated.Obtain areactive stateless session.The underlying database connection is obtained lazily when the returned
Mutiny.StatelessSessionneeds to access the database.The client must explicitly close the session by calling
Mutiny.StatelessSession.close().- Parameters:
tenantId- the id of the tenant- See Also:
Mutiny.SessionFactory.openStatelessSession(String),Mutiny.SessionFactory.withSession(String, Function)
-
-