This document describes the current stable version of Kombu (4.1). For development docs, go here.
Timer - kombu.async.timer¶
Timer scheduling Python callbacks.
-
class
kombu.async.timer.Entry(fun, args=None, kwargs=None)[source]¶ Schedule Entry.
-
args¶
-
canceled¶
-
cancelled¶
-
fun¶
-
kwargs¶
-
tref¶
-
-
class
kombu.async.timer.Timer(max_interval=None, on_error=None, **kwargs)[source]¶ Async timer implementation.
-
class
Entry(fun, args=None, kwargs=None)¶ Schedule Entry.
-
args¶
-
cancel()¶
-
canceled¶
-
cancelled¶
-
fun¶
-
kwargs¶
-
tref¶
-
-
enter_at(entry, eta=None, priority=0, time=<built-in function monotonic>)[source]¶ Enter function into the scheduler.
Parameters: - entry (Entry) – Item to enter.
- eta (datetime.datetime) – Scheduled time.
- priority (int) – Unused.
-
on_error= None¶
-
queue¶ Snapshot of underlying datastructure.
-
schedule¶
-
class