mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
10 lines
266 B
Python
10 lines
266 B
Python
"""Eventlet util methods."""
|
|
|
|
|
|
def spawn(hub, func, *args, **kwargs):
|
|
"""Spawns a function on specified hub."""
|
|
import eventlet
|
|
g = eventlet.greenthread.GreenThread(hub.greenlet)
|
|
hub.schedule_call_global(0, g.switch, func, args, kwargs)
|
|
return g
|