-
Notifications
You must be signed in to change notification settings - Fork 52
Session State Provider [API-83] #786
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
Conversation
So just to be sure - the simple fact that we register our own And then, the few extension methods that you provide are for providing asynchronous access to the session, right? Because the default mode is synchronous and can cause threading issues, right? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented
Codecov Report
@@ Coverage Diff @@
## master #786 +/- ##
==========================================
- Coverage 84.77% 84.69% -0.08%
==========================================
Files 885 885
Lines 20908 20919 +11
==========================================
- Hits 17724 17717 -7
- Misses 3184 3202 +18
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Yes. It's exactly as you described. We only provide async extensions to be compatible nature of Hazelcast client. Also, I've tested with in an ASP.NET Core project, and it works :) . Only thing you need to do use session |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved
Async extensions and documentation added for
ISession
interface.