--- /tmp/python-taskflow-4.5.0-3hysftoyc/debian/python-taskflow-doc_4.5.0-3_all.deb +++ python-taskflow-doc_4.5.0-3_all.deb ├── file list │ @@ -1,3 +1,3 @@ │ -rw-r--r-- 0 0 0 4 2020-11-20 23:05:12.000000 debian-binary │ --rw-r--r-- 0 0 0 6112 2020-11-20 23:05:12.000000 control.tar.xz │ --rw-r--r-- 0 0 0 1756152 2020-11-20 23:05:12.000000 data.tar.xz │ +-rw-r--r-- 0 0 0 6116 2020-11-20 23:05:12.000000 control.tar.xz │ +-rw-r--r-- 0 0 0 1756156 2020-11-20 23:05:12.000000 data.tar.xz ├── control.tar.xz │ ├── control.tar │ │ ├── ./md5sums │ │ │ ├── ./md5sums │ │ │ │┄ Files differ ├── data.tar.xz │ ├── data.tar │ │ ├── file list │ │ │ @@ -211,15 +211,15 @@ │ │ │ -rw-r--r-- 0 root (0) root (0) 7415 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/objects.inv │ │ │ -rw-r--r-- 0 root (0) root (0) 32289 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/py-modindex.html │ │ │ -rw-r--r-- 0 root (0) root (0) 12542 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/search.html │ │ │ -rw-r--r-- 0 root (0) root (0) 83178 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/searchindex.js │ │ │ drwxr-xr-x 0 root (0) root (0) 0 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/ │ │ │ -rw-r--r-- 0 root (0) root (0) 57169 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/arguments_and_results.html │ │ │ -rw-r--r-- 0 root (0) root (0) 115307 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/atoms.html │ │ │ --rw-r--r-- 0 root (0) root (0) 43277 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/conductors.html │ │ │ +-rw-r--r-- 0 root (0) root (0) 43279 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/conductors.html │ │ │ -rw-r--r-- 0 root (0) root (0) 211028 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/engines.html │ │ │ -rw-r--r-- 0 root (0) root (0) 509317 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/examples.html │ │ │ -rw-r--r-- 0 root (0) root (0) 48211 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/exceptions.html │ │ │ -rw-r--r-- 0 root (0) root (0) 12425 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/history.html │ │ │ -rw-r--r-- 0 root (0) root (0) 33956 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/index.html │ │ │ -rw-r--r-- 0 root (0) root (0) 31567 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/inputs_and_outputs.html │ │ │ -rw-r--r-- 0 root (0) root (0) 154489 2020-11-20 23:05:12.000000 ./usr/share/doc/python-taskflow-doc/html/user/jobs.html │ │ ├── ./usr/share/doc/python-taskflow-doc/html/user/conductors.html │ │ │ @@ -342,15 +342,15 @@ │ │ │ │ │ │ │ │ │ │ │ │
│ │ │

Non-blocking

│ │ │
│ │ │
│ │ │ -class taskflow.conductors.backends.impl_nonblocking.NonBlockingConductor(name, jobboard, persistence=None, engine=None, engine_options=None, wait_timeout=None, log=None, max_simultaneous_jobs=5, executor_factory=None)[source]
│ │ │ +class taskflow.conductors.backends.impl_nonblocking.NonBlockingConductor(name, jobboard, persistence=None, engine=None, engine_options=None, wait_timeout=None, log=None, max_simultaneous_jobs=33, executor_factory=None)[source] │ │ │

Bases: taskflow.conductors.backends.impl_executor.ExecutorConductor

│ │ │

Non-blocking conductor that processes job(s) using a thread executor.

│ │ │
│ │ │
NOTE(harlowja): A custom executor factory can be provided via keyword

argument executor_factory, if provided it will be │ │ │ invoked at │ │ │ run() time │ │ │ with one positional argument (this conductor) and it must │ │ │ @@ -359,15 +359,15 @@ │ │ │ backed executor is selected by default (it will have │ │ │ an equivalent number of workers as this conductors │ │ │ simultaneous job count).

│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ -MAX_SIMULTANEOUS_JOBS = 5
│ │ │ +MAX_SIMULTANEOUS_JOBS = 33 │ │ │

Default maximum number of jobs that can be in progress at the same time.

│ │ │
│ │ │ │ │ │
│ │ │ │ │ │
│ │ │