forked from Intsights/sergeant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
77 lines (77 loc) · 2.87 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
site_name: Sergeant
site_url: https://intsights.github.io/sergeant/
repo_url: https://github.com/intsights/sergeant
site_author: Gal Ben David
copyright: Intsights (c) 2020
remote_branch: gh-pages
docs_dir: docs
site_dir: site
nav:
- Home: 'index.md'
- Worker:
- Config:
- name: 'worker/config/name.md'
- connector: 'worker/config/connector.md'
- max_tasks_per_run: 'worker/config/max_tasks_per_run.md'
- max_retries: 'worker/config/max_retries.md'
- tasks_per_transaction: 'worker/config/tasks_per_transaction.md'
- encoder: 'worker/config/encoder.md'
- executor: 'worker/config/executor.md'
- timeouts: 'worker/config/timeouts.md'
- logging: 'worker/config/logging.md'
- Handlers:
- on_success: 'worker/handlers/on_success.md'
- on_failure: 'worker/handlers/on_failure.md'
- on_timeout: 'worker/handlers/on_timeout.md'
- on_retry: 'worker/handlers/on_retry.md'
- on_max_retries: 'worker/handlers/on_max_retries.md'
- on_requeue: 'worker/handlers/on_requeue.md'
- on_starvation: 'worker/handlers/on_starvation.md'
- Worker:
- initialize: 'worker/worker/initialize.md'
- finalize: 'worker/worker/finalize.md'
- pre_work: 'worker/worker/pre_work.md'
- post_work: 'worker/worker/post_work.md'
- work: 'worker/worker/work.md'
- Methods:
- retry: 'worker/methods/retry.md'
- requeue: 'worker/methods/requeue.md'
- stop: 'worker/methods/stop.md'
- respawn: 'worker/methods/respawn.md'
- apply_async_one: 'worker/methods/apply_async_one.md'
- apply_async_many: 'worker/methods/apply_async_many.md'
- get_next_tasks: 'worker/methods/get_next_tasks.md'
- number_of_enqueued_tasks: 'worker/methods/number_of_enqueued_tasks.md'
- purge_tasks: 'worker/methods/purge_tasks.md'
- lock: 'worker/methods/lock.md'
- Lock:
- acquire: 'worker/lock/acquire.md'
- release: 'worker/lock/release.md'
- is_locked: 'worker/lock/is_locked.md'
- get_ttl: 'worker/lock/get_ttl.md'
- set_ttl: 'worker/lock/set_ttl.md'
- Supervisor: "supervisor.md"
- Examples:
- 'examples/single_producer_consumer.md'
- 'examples/worker_with_apm.md'
- 'examples/base_worker.md'
- 'examples/supervisor_with_custom_logger.md'
theme:
name: material
logo: images/logo_icon.png
favicon: images/favicon.ico
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.8/mermaid.min.js
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.highlight:
linenums: 1
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.details