-
Notifications
You must be signed in to change notification settings - Fork 96
Add operations to detect the current open session #1780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Milestone
Comments
You can just call /**
* Perform work using a {@link Session reactive session}.
* <p>
* <il>
* <li>If there is already a session associated with the current
* reactive stream, then the work will be executed using that
* session.
* <li>Otherwise, if there is no session associated with the
* current stream, a new session will be created.
* </il>
* <p> |
gavinking
added a commit
to gavinking/hibernate-reactive
that referenced
this issue
Apr 30, 2025
…om the context this will make it easier to implement the necessary Quarkus integration
gavinking
added a commit
to gavinking/hibernate-reactive
that referenced
this issue
May 1, 2025
…om the context this will make it easier to implement the necessary Quarkus integration
gavinking
added a commit
to gavinking/hibernate-reactive
that referenced
this issue
May 1, 2025
…om the context this will make it easier to implement the necessary Quarkus integration
gavinking
added a commit
that referenced
this issue
May 1, 2025
…ntext this will make it easier to implement the necessary Quarkus integration
In the end I've added these, to make it easier to deal with reactive session management in Quarkus. |
gavinking
added a commit
that referenced
this issue
May 1, 2025
…ntext this will make it easier to implement the necessary Quarkus integration
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
I'm writing some DAO-like code and want to ensure a Session is already open when it's called. But Hibernate Reactive doesn't expose a
getCurrentSession()
onSessionFactory
Mutiny SessionFactory already checks for this internally, but doesn't expose access
Mutiny Code:
Can we add something that allows you to fetch current session (if one is in progress), or at least check if a Session is already open?
The text was updated successfully, but these errors were encountered: