-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
Support daemon threads. #14
Comments
To better understand the use case:
|
On Tue, Jan 8, 2013 at 2:29 AM, Stein Magnus Jodal <notifications@github.com
try: |
I just added support for using daemon threads. Could you give it a spin and see if it works for you before I release v1.1? You can install the development version either by installing from the git repo or running |
I might add that to make a class AnActor(pykka.ThreadingActor):
use_daemon_thread = True
...
AnActor.start() |
Daemon threads stop when all non-daemon threads have stopped: http://docs.python.org/2/library/threading.html#threading.Thread.daemon It would be nice to be able to mark actors as daemon.
The text was updated successfully, but these errors were encountered: