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.Session
newSession()
Deprecated.Obtain a newreactive session
, the main interaction point between the user's program and Hibernate Reactive.Mutiny.Session
newSession(String tenantId)
Deprecated.Obtain a newreactive session
for a specified tenant.Mutiny.StatelessSession
newStatelessSession()
Deprecated.Obtain areactive stateless session
.Mutiny.StatelessSession
newStatelessSession(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.Session
needs 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 session
for a specified tenant.The underlying database connection is obtained lazily when the returned
Mutiny.Session
needs 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.StatelessSession
needs 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.StatelessSession
needs 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)
-
-