pallets-eco / blinker

A fast Python in-process signal/event dispatching system.

Home Page:https://blinker.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does blinker works with gevent?

mehdisadeghi opened this issue · comments

If I spawn multiple greenlets does blinker signals will find their way among them? In my case it seems that the signals can't travel between greenlets.

My mistake, it works. I had a problem of losing receivers because of not setting connect(handler, weak=False) flag.