Kill greenlets with notify

This commit is contained in:
shortcutme 2019-11-20 14:07:33 +01:00
parent 6c31a3b77e
commit 9299e5b614
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,5 @@
import gevent
from Debug import Debug
class GreenletManager:
@ -17,7 +18,7 @@ class GreenletManager:
self.greenlets.add(greenlet)
return greenlet
def stopGreenlets(self, reason="Stopping greenlets"):
def stopGreenlets(self, reason="Stopping all greenlets"):
num = len(self.greenlets)
gevent.killall(list(self.greenlets))
gevent.killall(list(self.greenlets), Debug.Notify(reason), block=False)
return num