celery.concurrency.base

Base Execution Pool.

class celery.concurrency.base.BasePool(limit=None, putlocks=True, forking_enable=True, callbacks_propagate=(), app=None, **options)[源代码]

Task pool.

CLOSE = 2
RUN = 1
TERMINATE = 3
class Timer(schedule: Timer | None = None, on_error: Callable[[Exception], None] | None = None, on_tick: Callable[[float], None] | None = None, on_start: Callable[[Timer], None] | None = None, max_interval: float | None = None, **kwargs: Any)

Timer thread.

备注

This is only used for transports not supporting AsyncIO.

class Entry(fun, args=None, kwargs=None)

Schedule Entry.

args
cancel()
canceled
property cancelled
fun
kwargs
tref
Schedule

Timer 的别名

call_after(*args: Any, **kwargs: Any) Entry
call_at(*args: Any, **kwargs: Any) Entry
call_repeatedly(*args: Any, **kwargs: Any) Entry
cancel(tref: Entry) None
clear() None
empty() bool
ensure_started() None
enter(entry: Entry, eta: float, priority: int | None = None) Entry
enter_after(*args: Any, **kwargs: Any) Entry
exit_after(secs: float, priority: int = 10) None
next() float | None
on_tick: Callable[[float], None] | None = None
property queue: list
run() None

Method representing the thread's activity.

You may override this method in a subclass. The standard run() method invokes the callable object passed to the object's constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.

running: bool = False
stop() None
property active
apply_async(target, args=None, kwargs=None, **options)[源代码]

Equivalent of the apply() built-in function.

Callbacks should optimally return as soon as possible since otherwise the thread which handles the result will get blocked.

body_can_be_buffer = False
close()[源代码]
did_start_ok()[源代码]
flush()[源代码]
property info
is_green = False

set to true if pool uses greenlets.

maintain_pool(*args, **kwargs)[源代码]
property num_processes
on_apply(*args, **kwargs)[源代码]
on_close()[源代码]
on_hard_timeout(job)[源代码]
on_soft_timeout(job)[源代码]
on_start()[源代码]
on_stop()[源代码]
on_terminate()[源代码]
register_with_event_loop(loop)[源代码]
restart()[源代码]
signal_safe = True

set to true if the pool can be shutdown from within a signal handler.

start()[源代码]
stop()[源代码]
task_join_will_block = True
terminate()[源代码]
terminate_job(pid, signal=None)[源代码]
uses_semaphore = False

only used by multiprocessing pool

celery.concurrency.base.apply_target(target, args=(), kwargs=None, callback=None, accept_callback=None, pid=None, getpid=<built-in function getpid>, propagate=(), monotonic=<built-in function monotonic>, **_)[源代码]

Apply function within pool context.