-
Notifications
You must be signed in to change notification settings - Fork 410
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
ASP.NET Core support #94
Comments
I'm not sure if this is exactly what you're having problems with but as I wrote about this as part of my recent book I thought I'd chip in. You can do a blocking shutdown to approximate what The docs say that for both; "Shutdown will block until this event completes." |
Thank you very much for your input. There's still a blocking problem on our part (#93) but as soon I got it fixed I'll add an example on how to use the library with ASP.NET Core on our README. |
Hi, any improvements for hosting in asp.net core so far? |
Published a |
Add please documentation for use in README.md |
Thanks! I've updated ANCLAFS.com (jpsingleton/ANCLAFS@f54b6a7). |
@tallesl When will the README be updated? |
While the library supports .NET Core, it's not already clear what would be needed to support running it with ASP.NET Core.
You can find out when ASP.NET Core is shutting down with the following
Startup.cs
(adapted Getting Started):But then there's
two problemsone problem:JobManager.Stop
wouldn't be enough since the current implementation doesn't block the running tasks (that's a problem not just for ASP.NET Core by the way);It's unclear if shutting down due to idleness plays a role on ASP.NET Core(looks like that's not a problem).The text was updated successfully, but these errors were encountered: