taskflow 5.11.0__py3-none-any.whl → 6.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. taskflow/atom.py +3 -5
  2. taskflow/conductors/backends/__init__.py +0 -2
  3. taskflow/conductors/backends/impl_blocking.py +1 -3
  4. taskflow/conductors/backends/impl_executor.py +3 -6
  5. taskflow/conductors/backends/impl_nonblocking.py +1 -3
  6. taskflow/conductors/base.py +1 -3
  7. taskflow/deciders.py +0 -2
  8. taskflow/engines/__init__.py +0 -2
  9. taskflow/engines/action_engine/actions/base.py +1 -3
  10. taskflow/engines/action_engine/actions/retry.py +1 -3
  11. taskflow/engines/action_engine/actions/task.py +1 -3
  12. taskflow/engines/action_engine/builder.py +2 -4
  13. taskflow/engines/action_engine/compiler.py +9 -11
  14. taskflow/engines/action_engine/completer.py +5 -7
  15. taskflow/engines/action_engine/deciders.py +1 -3
  16. taskflow/engines/action_engine/engine.py +4 -26
  17. taskflow/engines/action_engine/executor.py +2 -4
  18. taskflow/engines/action_engine/runtime.py +1 -3
  19. taskflow/engines/action_engine/scheduler.py +3 -5
  20. taskflow/engines/action_engine/scopes.py +3 -5
  21. taskflow/engines/action_engine/selector.py +1 -3
  22. taskflow/engines/action_engine/traversal.py +0 -2
  23. taskflow/engines/base.py +1 -3
  24. taskflow/engines/helpers.py +0 -2
  25. taskflow/engines/worker_based/dispatcher.py +2 -4
  26. taskflow/engines/worker_based/endpoint.py +1 -3
  27. taskflow/engines/worker_based/engine.py +1 -4
  28. taskflow/engines/worker_based/executor.py +0 -2
  29. taskflow/engines/worker_based/protocol.py +1 -3
  30. taskflow/engines/worker_based/proxy.py +2 -4
  31. taskflow/engines/worker_based/server.py +3 -5
  32. taskflow/engines/worker_based/types.py +6 -7
  33. taskflow/engines/worker_based/worker.py +4 -6
  34. taskflow/examples/99_bottles.py +0 -2
  35. taskflow/examples/alphabet_soup.py +0 -2
  36. taskflow/examples/build_a_car.py +1 -3
  37. taskflow/examples/buildsystem.py +1 -3
  38. taskflow/examples/calculate_in_parallel.py +1 -3
  39. taskflow/examples/calculate_linear.py +3 -5
  40. taskflow/examples/create_parallel_volume.py +2 -5
  41. taskflow/examples/delayed_return.py +1 -3
  42. taskflow/examples/distance_calculator.py +12 -24
  43. taskflow/examples/dump_memory_backend.py +1 -3
  44. taskflow/examples/echo_listener.py +0 -2
  45. taskflow/examples/example_utils.py +1 -3
  46. taskflow/examples/fake_billing.py +9 -11
  47. taskflow/examples/graph_flow.py +2 -4
  48. taskflow/examples/hello_world.py +2 -4
  49. taskflow/examples/jobboard_produce_consume_colors.py +3 -5
  50. taskflow/examples/parallel_table_multiply.py +1 -3
  51. taskflow/examples/persistence_example.py +1 -3
  52. taskflow/examples/pseudo_scoping.py +2 -4
  53. taskflow/examples/resume_from_backend.py +1 -3
  54. taskflow/examples/resume_many_flows/my_flows.py +0 -2
  55. taskflow/examples/resume_many_flows/resume_all.py +1 -3
  56. taskflow/examples/resume_many_flows/run_flow.py +2 -4
  57. taskflow/examples/resume_many_flows.py +0 -2
  58. taskflow/examples/resume_vm_boot.py +12 -15
  59. taskflow/examples/resume_volume_create.py +3 -5
  60. taskflow/examples/retry_flow.py +0 -2
  61. taskflow/examples/reverting_linear.py +1 -3
  62. taskflow/examples/run_by_iter.py +0 -2
  63. taskflow/examples/run_by_iter_enumerate.py +1 -3
  64. taskflow/examples/share_engine_thread.py +2 -4
  65. taskflow/examples/simple_linear.py +0 -2
  66. taskflow/examples/simple_linear_listening.py +1 -3
  67. taskflow/examples/simple_linear_pass.py +0 -2
  68. taskflow/examples/simple_map_reduce.py +0 -2
  69. taskflow/examples/switch_graph_flow.py +1 -3
  70. taskflow/examples/timing_listener.py +1 -3
  71. taskflow/examples/tox_conductor.py +3 -5
  72. taskflow/examples/wbe_event_sender.py +0 -2
  73. taskflow/examples/wbe_mandelbrot.py +0 -2
  74. taskflow/examples/wbe_simple_linear.py +0 -2
  75. taskflow/examples/wrapped_exception.py +0 -2
  76. taskflow/exceptions.py +7 -9
  77. taskflow/flow.py +1 -3
  78. taskflow/formatters.py +22 -8
  79. taskflow/jobs/backends/__init__.py +0 -2
  80. taskflow/jobs/backends/impl_redis.py +22 -18
  81. taskflow/jobs/backends/impl_zookeeper.py +7 -8
  82. taskflow/jobs/base.py +5 -7
  83. taskflow/listeners/base.py +1 -3
  84. taskflow/listeners/capturing.py +1 -3
  85. taskflow/listeners/claims.py +1 -3
  86. taskflow/listeners/logging.py +10 -6
  87. taskflow/listeners/printing.py +1 -3
  88. taskflow/listeners/timing.py +10 -13
  89. taskflow/logging.py +0 -2
  90. taskflow/patterns/graph_flow.py +2 -4
  91. taskflow/patterns/linear_flow.py +4 -9
  92. taskflow/patterns/unordered_flow.py +4 -9
  93. taskflow/persistence/backends/__init__.py +1 -3
  94. taskflow/persistence/backends/impl_dir.py +3 -6
  95. taskflow/persistence/backends/impl_memory.py +6 -9
  96. taskflow/persistence/backends/impl_sqlalchemy.py +4 -6
  97. taskflow/persistence/backends/impl_zookeeper.py +2 -4
  98. taskflow/persistence/backends/sqlalchemy/alembic/env.py +0 -2
  99. taskflow/persistence/backends/sqlalchemy/alembic/versions/00af93df9d77_add_unique_into_all_indexes.py +80 -0
  100. taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py +0 -2
  101. taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py +0 -2
  102. taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py +0 -2
  103. taskflow/persistence/backends/sqlalchemy/alembic/versions/2ad4984f2864_switch_postgres_to_json_native.py +0 -2
  104. taskflow/persistence/backends/sqlalchemy/alembic/versions/3162c0f3f8e4_add_revert_results_and_revert_failure_.py +0 -2
  105. taskflow/persistence/backends/sqlalchemy/alembic/versions/589dccdf2b6e_rename_taskdetails_to_atomdetails.py +0 -2
  106. taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py +0 -2
  107. taskflow/persistence/backends/sqlalchemy/tables.py +0 -2
  108. taskflow/persistence/base.py +2 -4
  109. taskflow/persistence/models.py +19 -24
  110. taskflow/persistence/path_based.py +1 -3
  111. taskflow/retry.py +12 -18
  112. taskflow/states.py +0 -2
  113. taskflow/storage.py +9 -11
  114. taskflow/task.py +15 -18
  115. taskflow/test.py +5 -5
  116. taskflow/tests/test_examples.py +0 -2
  117. taskflow/tests/unit/action_engine/test_builder.py +1 -3
  118. taskflow/tests/unit/action_engine/test_compile.py +4 -6
  119. taskflow/tests/unit/action_engine/test_creation.py +0 -21
  120. taskflow/tests/unit/action_engine/test_scoping.py +1 -3
  121. taskflow/tests/unit/jobs/base.py +1 -3
  122. taskflow/tests/unit/jobs/test_entrypoint.py +0 -2
  123. taskflow/tests/unit/jobs/test_redis_job.py +1 -3
  124. taskflow/tests/unit/jobs/test_zk_job.py +2 -4
  125. taskflow/tests/unit/patterns/test_graph_flow.py +18 -20
  126. taskflow/tests/unit/patterns/test_linear_flow.py +7 -9
  127. taskflow/tests/unit/patterns/test_unordered_flow.py +12 -14
  128. taskflow/tests/unit/persistence/base.py +2 -4
  129. taskflow/tests/unit/persistence/test_dir_persistence.py +2 -4
  130. taskflow/tests/unit/persistence/test_memory_persistence.py +2 -4
  131. taskflow/tests/unit/persistence/test_sql_persistence.py +4 -6
  132. taskflow/tests/unit/persistence/test_zk_persistence.py +2 -4
  133. taskflow/tests/unit/test_arguments_passing.py +3 -25
  134. taskflow/tests/unit/test_check_transition.py +3 -5
  135. taskflow/tests/unit/test_conductors.py +0 -2
  136. taskflow/tests/unit/test_deciders.py +1 -3
  137. taskflow/tests/unit/test_engine_helpers.py +0 -2
  138. taskflow/tests/unit/test_engines.py +19 -102
  139. taskflow/tests/unit/test_exceptions.py +4 -6
  140. taskflow/tests/unit/test_failure.py +10 -12
  141. taskflow/tests/unit/test_flow_dependencies.py +62 -64
  142. taskflow/tests/unit/test_formatters.py +0 -2
  143. taskflow/tests/unit/test_functor_task.py +1 -3
  144. taskflow/tests/unit/test_listeners.py +9 -11
  145. taskflow/tests/unit/test_mapfunctor_task.py +1 -3
  146. taskflow/tests/unit/test_notifier.py +1 -3
  147. taskflow/tests/unit/test_progress.py +2 -4
  148. taskflow/tests/unit/test_reducefunctor_task.py +1 -3
  149. taskflow/tests/unit/test_retries.py +1 -25
  150. taskflow/tests/unit/test_states.py +0 -2
  151. taskflow/tests/unit/test_storage.py +10 -12
  152. taskflow/tests/unit/test_suspend.py +2 -23
  153. taskflow/tests/unit/test_task.py +17 -19
  154. taskflow/tests/unit/test_types.py +4 -6
  155. taskflow/tests/unit/test_utils.py +9 -11
  156. taskflow/tests/unit/test_utils_async_utils.py +0 -2
  157. taskflow/tests/unit/test_utils_binary.py +12 -14
  158. taskflow/tests/unit/test_utils_iter_utils.py +1 -3
  159. taskflow/tests/unit/test_utils_kazoo_utils.py +0 -2
  160. taskflow/tests/unit/test_utils_threading_utils.py +1 -3
  161. taskflow/tests/unit/worker_based/test_creation.py +0 -2
  162. taskflow/tests/unit/worker_based/test_dispatcher.py +0 -2
  163. taskflow/tests/unit/worker_based/test_endpoint.py +2 -4
  164. taskflow/tests/unit/worker_based/test_executor.py +1 -3
  165. taskflow/tests/unit/worker_based/test_message_pump.py +0 -2
  166. taskflow/tests/unit/worker_based/test_pipeline.py +0 -2
  167. taskflow/tests/unit/worker_based/test_protocol.py +2 -4
  168. taskflow/tests/unit/worker_based/test_proxy.py +2 -4
  169. taskflow/tests/unit/worker_based/test_server.py +3 -5
  170. taskflow/tests/unit/worker_based/test_types.py +0 -2
  171. taskflow/tests/unit/worker_based/test_worker.py +1 -3
  172. taskflow/tests/utils.py +11 -15
  173. taskflow/types/entity.py +1 -3
  174. taskflow/types/failure.py +3 -6
  175. taskflow/types/graph.py +14 -18
  176. taskflow/types/latch.py +1 -3
  177. taskflow/types/notifier.py +6 -9
  178. taskflow/types/sets.py +2 -5
  179. taskflow/types/timing.py +1 -3
  180. taskflow/types/tree.py +6 -10
  181. taskflow/utils/async_utils.py +0 -2
  182. taskflow/utils/banner.py +8 -9
  183. taskflow/utils/eventlet_utils.py +2 -2
  184. taskflow/utils/iter_utils.py +0 -2
  185. taskflow/utils/kazoo_utils.py +7 -9
  186. taskflow/utils/kombu_utils.py +5 -7
  187. taskflow/utils/misc.py +4 -6
  188. taskflow/utils/persistence_utils.py +0 -2
  189. taskflow/utils/redis_utils.py +2 -4
  190. taskflow/utils/schema_utils.py +0 -2
  191. taskflow/utils/threading_utils.py +1 -3
  192. taskflow/version.py +1 -3
  193. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/AUTHORS +1 -0
  194. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/METADATA +2 -1
  195. taskflow-6.0.0.dist-info/RECORD +243 -0
  196. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/WHEEL +1 -1
  197. taskflow-6.0.0.dist-info/pbr.json +1 -0
  198. taskflow/engines/action_engine/process_executor.py +0 -720
  199. taskflow/tests/unit/action_engine/test_process_executor.py +0 -106
  200. taskflow-5.11.0.dist-info/RECORD +0 -244
  201. taskflow-5.11.0.dist-info/pbr.json +0 -1
  202. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/LICENSE +0 -0
  203. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/entry_points.txt +0 -0
  204. {taskflow-5.11.0.dist-info → taskflow-6.0.0.dist-info}/top_level.txt +0 -0
@@ -1,106 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- # Copyright (C) 2015 Yahoo! Inc. All Rights Reserved.
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License"); you may
6
- # not use this file except in compliance with the License. You may obtain
7
- # a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
- # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
- # License for the specific language governing permissions and limitations
15
- # under the License.
16
- import errno
17
- import socket
18
- import threading
19
-
20
- import testtools
21
-
22
- from taskflow import task
23
- from taskflow import test
24
- from taskflow.test import mock
25
- from taskflow.tests import utils as test_utils
26
-
27
- try:
28
- import asyncore
29
- from taskflow.engines.action_engine import process_executor as pe
30
- except ImportError:
31
- asyncore = None
32
- pe = None
33
-
34
-
35
- @testtools.skipIf(asyncore is None, 'process_executor is not available')
36
- class ProcessExecutorHelpersTest(test.TestCase):
37
- def test_reader(self):
38
- capture_buf = []
39
-
40
- def do_capture(identity, message_capture_func):
41
- capture_buf.append(message_capture_func())
42
-
43
- r = pe.Reader(b"secret", do_capture)
44
- for data in pe._encode_message(b"secret", ['hi'], b'me'):
45
- self.assertEqual(len(data), r.bytes_needed)
46
- r.feed(data)
47
-
48
- self.assertEqual(1, len(capture_buf))
49
- self.assertEqual(['hi'], capture_buf[0])
50
-
51
- def test_bad_hmac_reader(self):
52
- r = pe.Reader(b"secret-2", lambda ident, capture_func: capture_func())
53
- in_data = b"".join(pe._encode_message(b"secret", ['hi'], b'me'))
54
- self.assertRaises(pe.BadHmacValueError, r.feed, in_data)
55
-
56
- @mock.patch("socket.socket")
57
- def test_no_connect_channel(self, mock_socket_factory):
58
- mock_sock = mock.MagicMock()
59
- mock_socket_factory.return_value = mock_sock
60
- mock_sock.connect.side_effect = socket.error(errno.ECONNREFUSED,
61
- 'broken')
62
- c = pe.Channel(2222, b"me", b"secret")
63
- self.assertRaises(socket.error, c.send, "hi")
64
- self.assertTrue(c.dead)
65
- self.assertTrue(mock_sock.close.called)
66
-
67
- def test_send_and_dispatch(self):
68
- details_capture = []
69
-
70
- t = test_utils.DummyTask("rcver")
71
- t.notifier.register(
72
- task.EVENT_UPDATE_PROGRESS,
73
- lambda _event_type, details: details_capture.append(details))
74
-
75
- d = pe.Dispatcher({}, b'secret', b'server-josh')
76
- d.setup()
77
- d.targets[b'child-josh'] = t
78
-
79
- s = threading.Thread(target=asyncore.loop, kwargs={'map': d.map})
80
- s.start()
81
- self.addCleanup(s.join)
82
-
83
- c = pe.Channel(d.port, b'child-josh', b'secret')
84
- self.addCleanup(c.close)
85
-
86
- send_what = [
87
- {'progress': 0.1},
88
- {'progress': 0.2},
89
- {'progress': 0.3},
90
- {'progress': 0.4},
91
- {'progress': 0.5},
92
- {'progress': 0.6},
93
- {'progress': 0.7},
94
- {'progress': 0.8},
95
- {'progress': 0.9},
96
- ]
97
- e_s = pe.EventSender(c)
98
- for details in send_what:
99
- e_s(task.EVENT_UPDATE_PROGRESS, details)
100
-
101
- # This forces the thread to shutdown (since the asyncore loop
102
- # will exit when no more sockets exist to process...)
103
- d.close()
104
-
105
- self.assertEqual(len(send_what), len(details_capture))
106
- self.assertEqual(send_what, details_capture)
@@ -1,244 +0,0 @@
1
- taskflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- taskflow/atom.py,sha256=NwpWVIB2UFxPv4sDi30SDadjrhR8ZpZtiOyyvxQIVLI,17342
3
- taskflow/deciders.py,sha256=m9qybFHy_zCEo1uLcMltnEkTjY8GZAUDf79rJswV4rY,3402
4
- taskflow/exceptions.py,sha256=n-OZG1lIydGJwgxrK5MJSTVK-0tBpP4FrImp0KYU_Ow,11565
5
- taskflow/flow.py,sha256=seusvtX5w9ugEtTPzvxHJksSmf1iQqgBl2dfbK8rOKI,4834
6
- taskflow/formatters.py,sha256=vJ_vSSW08eNv3v4kQAKSN7Zu91CxL1CyenTg1VMVVOA,7441
7
- taskflow/logging.py,sha256=FwO1p_z75Dozk8ieCjAZEnEiq92ErQAAePMVpynx4Gs,1870
8
- taskflow/retry.py,sha256=Dk-IcdPi5n2502fzmVMjrWLzlrXp6h1ak_xOpOWoh6s,14537
9
- taskflow/states.py,sha256=3MRdAfs0x94QhDjl-RGyTfxAbkL3APtNr_qQf6apqbE,6901
10
- taskflow/storage.py,sha256=CSCegSPkrw2QDP6qGrzUYTWBFBX34Kqv0p9hwYId9oM,52114
11
- taskflow/task.py,sha256=qw79ho1bhwe5KttSPjalfUlCTfLUjNGc1twNdTFMi4w,10052
12
- taskflow/test.py,sha256=T6DfnwU7NcSRLfAYR3QgmGXhRVkYfeH-6JEp2jffQh8,9341
13
- taskflow/version.py,sha256=UU8J6gwFErEHh0U8vhI2hxPlTN9k47Fvul2I-4bPp6A,1091
14
- taskflow/conductors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- taskflow/conductors/base.py,sha256=k7E_zu9CIORhODWzwmxh7w8fSNhG6dJaYEfLwIxhxXE,7332
16
- taskflow/conductors/backends/__init__.py,sha256=UJS_4cDCt9PT1jrTcmB6cNk4yJpRm1LEoq4rigvaWQ0,1634
17
- taskflow/conductors/backends/impl_blocking.py,sha256=WGm0_EZT2UhwEOWEQ3cZ5t4k_ZIWwe-8fstdYX6OYv4,1516
18
- taskflow/conductors/backends/impl_executor.py,sha256=Bv_ewIjb_HxG4wpD4Om7WXNazsUMTIEC5cr70PT3kQM,15160
19
- taskflow/conductors/backends/impl_nonblocking.py,sha256=PO7Tg2X1N1dJLxj3-AjL1TPxQsSxgiLth0JFhuc5t9c,3014
20
- taskflow/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- taskflow/engines/__init__.py,sha256=W8ik4-Q5TDXYd47IwKEQeSeDbnToJsVIgzs__fS_BSc,1397
22
- taskflow/engines/base.py,sha256=pkzWdTIWTdniQTY_BpaDrHmSYs3if6y-ANRVwhhY4Oc,4865
23
- taskflow/engines/helpers.py,sha256=oPTpfR4TbQH0QlkO4TO0bQ-zT_XYpvxbHl9moYSkM6g,10952
24
- taskflow/engines/action_engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- taskflow/engines/action_engine/builder.py,sha256=cYdzNpPSgzpQgO9YCp4T7JgRmpD4L90l1cnld-CRAdw,17015
26
- taskflow/engines/action_engine/compiler.py,sha256=26x5yTtNfBcieeaza1n-MiPmUIP-nH2eA_hGOmgy8U8,16164
27
- taskflow/engines/action_engine/completer.py,sha256=wjKpUM1QPr_fVnVG_XqA7gw0IKEA_aj3FrEvCITN0J4,9028
28
- taskflow/engines/action_engine/deciders.py,sha256=WEKo189CL9Zdg506Sz3Mlxpfp6dqGv7TMcfI07h69Co,7254
29
- taskflow/engines/action_engine/engine.py,sha256=kz_9BVD22IO2mEHBc735zUDPCF0Y_hzcAuQqZpUUVCk,29817
30
- taskflow/engines/action_engine/executor.py,sha256=sBmKwgDQN9fEZz42T7RB-RYUZvWqfHqC-Y2EsWRGkYI,7749
31
- taskflow/engines/action_engine/process_executor.py,sha256=if8kc7Dg3lvT7NwKVe2eqHhksv1pxEPNoI5E80naGr4,27975
32
- taskflow/engines/action_engine/runtime.py,sha256=FAUJZsZaADo4t1kRzs0Pf5z2qRjrlNG5GCycUoe4N8U,14604
33
- taskflow/engines/action_engine/scheduler.py,sha256=yZEn2z23N-0XNpHtjOs3kxJh4CTpZl-2ASrPsyLP2t0,4048
34
- taskflow/engines/action_engine/scopes.py,sha256=u0cmoMycrNZqMebgKqLW2YXBVLukNi9dVqKOFr79lKw,5432
35
- taskflow/engines/action_engine/selector.py,sha256=9FKRKOi6mqIn4kfEY2R6Uq6aVzPPsT0DgI1VDVRaZdU,11558
36
- taskflow/engines/action_engine/traversal.py,sha256=gLDFNW-yxJxxtbZYgEjudArU8wwGcddcmpq4Sxeu6tg,4552
37
- taskflow/engines/action_engine/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- taskflow/engines/action_engine/actions/base.py,sha256=yu8a27VLZeuLnOwx1KbSJ-IrPhyz8fcXy3dyypkihuY,1668
39
- taskflow/engines/action_engine/actions/retry.py,sha256=XEEKh0NOp-jasZ0LhZGWpEvJK3bQAuzr_-_E3HoUr1A,4232
40
- taskflow/engines/action_engine/actions/task.py,sha256=6vbA3PgPtFP95LmLdKAV-rUug-clH19LKyr99MsCD8o,6042
41
- taskflow/engines/worker_based/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- taskflow/engines/worker_based/dispatcher.py,sha256=svp6nHh_qTgX-hiwtyGx0NK1oXk1JY5GmbLKq_7J2dQ,7145
43
- taskflow/engines/worker_based/endpoint.py,sha256=w4GeSHdqmrLpywfVdnmgBplrtP8ZmbNRPfomcta8h_w,1715
44
- taskflow/engines/worker_based/engine.py,sha256=vLpfgolBiQtauAvnNbMePTmMdTKKD_9rbQUqDTTmOZo,4379
45
- taskflow/engines/worker_based/executor.py,sha256=g6JkEr-rq2DtKo96itcpO5qWq2MRH0V7a3eBOFSeosg,13811
46
- taskflow/engines/worker_based/protocol.py,sha256=mpK2wN6UN28MDYp5oFH_bMkNSaVCOxPONy9Px9VplbI,20238
47
- taskflow/engines/worker_based/proxy.py,sha256=ac_n9AwkqyVl_MQVzYNYNIUmmxNkyPIJBm-hmk80Sx4,9525
48
- taskflow/engines/worker_based/server.py,sha256=mPNaKljR90eXmHU6KuvrJPu2KnHjlpjf56xZulq-KF4,11559
49
- taskflow/engines/worker_based/types.py,sha256=tCzzadeEDwDw5SBPNY6fSiqmCHilqaxPshL_tcSG1I8,9887
50
- taskflow/engines/worker_based/worker.py,sha256=GEGToN5ATKUu7dZ8daWBuCLSBllTm1hkVtOe8tM626M,6331
51
- taskflow/examples/99_bottles.py,sha256=Ha7NLEtXAFPGky2zO8KBhuF6j2UN2lqqvMvOT8OV2_Q,8893
52
- taskflow/examples/alphabet_soup.py,sha256=g3QHPchnIae58j13mOmjCsBSbcccnYUIMCv0IPmIGmw,3255
53
- taskflow/examples/build_a_car.py,sha256=qgOIepvWxfBNiyYYn3NgKvo6C7wcxJIIOyX8BydET3g,6554
54
- taskflow/examples/buildsystem.py,sha256=cWJ5elM16ImGfq6EeJxvVy1wCX0g6YslIEyWf4TOijc,3909
55
- taskflow/examples/calculate_in_parallel.py,sha256=eCeRAj0h7QsHgd21UpRhMDJWRYO5PcvjPQZ6cTereJk,3917
56
- taskflow/examples/calculate_linear.py,sha256=4o-8RmsuRVAj-lv6BhVZiUETjQqKJWoMcMDN-GFakNE,4614
57
- taskflow/examples/create_parallel_volume.py,sha256=ap84aAvj0ztn0q7UjvzPiQZfcPH5wke9pbK7TzKIShg,4336
58
- taskflow/examples/delayed_return.py,sha256=fy1Kzdm4baVvsZ3Z-KxlEN7J51n9ZdsyRFfNJqpKSaU,2846
59
- taskflow/examples/distance_calculator.py,sha256=IobFjbqtjLxhPOXwHlsfy51trEJP_6WVuPLlWLZ7ETg,4453
60
- taskflow/examples/dump_memory_backend.py,sha256=ptRZS_jclIoUAALu5yUDy_bnkUBOuVPS1Sx4VY5MDX0,2123
61
- taskflow/examples/echo_listener.py,sha256=wEWRTuGm_ZkWMFs14Dd9IJoQ_tS4Lkxre--zYOEh1Sw,1908
62
- taskflow/examples/example_utils.py,sha256=r2a4uYxlryyllYjPXvM4y6nz53dhPnasd8Eq1dSZbas,3312
63
- taskflow/examples/fake_billing.py,sha256=ffflnkBRU_t8V3QKmRGM7tW-oTBNFt0g5bxY_QFn3Xg,6832
64
- taskflow/examples/graph_flow.py,sha256=xPZRt0OiOBpH6ECMQMc7ppXXs2nLH_L1iD7mpgC6Iag,3461
65
- taskflow/examples/hello_world.py,sha256=7xERr8ZnCkvuhOq7aR4vddUFauIofgKh0iecIabzJbE,4216
66
- taskflow/examples/jobboard_produce_consume_colors.py,sha256=HG6A-IbIPrYiTDEwyFxD9afDLEcjjmm1iYSrmjFut0c,6821
67
- taskflow/examples/parallel_table_multiply.py,sha256=RxuEOb_IddPox0M-5PAMn3L01XscC_vqfN69XUCyeS8,4276
68
- taskflow/examples/persistence_example.py,sha256=l-Ap52yOslFfcmfHDKc7kUfrvy4IcL28TjVmOwP4GsU,3906
69
- taskflow/examples/pseudo_scoping.out.txt,sha256=ktR2-fVrRo5AsYPRMEBN6KJZ6_0ZMnts29bgN7t42tY,238
70
- taskflow/examples/pseudo_scoping.py,sha256=8sNU3ysk6mo7iTsae3WZKhQKI3fAg4mo0Xo6WHZIozA,3497
71
- taskflow/examples/resume_from_backend.out.txt,sha256=0THjgMno9e6k3c8l_MTwKWDiQ9Pp2VG19vWjzR2SzFU,678
72
- taskflow/examples/resume_from_backend.py,sha256=hroqTvUOfTOVa0OoOz7nL8kmvG_APrsXPSsB4OpT3Fk,4992
73
- taskflow/examples/resume_many_flows.out.txt,sha256=laNlJonlvUlDG4zGK_KHZl7GLnJ9w0epaadrKKLns2w,774
74
- taskflow/examples/resume_many_flows.py,sha256=ebUbtwJS3HwdRnuqqw_4NxhsZwa6dc6IMZIMxRjwLak,3192
75
- taskflow/examples/resume_vm_boot.py,sha256=sJJxJi8I9BdrdhIRnk9Gm_fBNxeRyWkEX4heIqq8buM,9636
76
- taskflow/examples/resume_volume_create.py,sha256=RxhHMzN2qfZfaG-Qb_ZIIgAncMj0IKF6xf3qrU5OMoM,5889
77
- taskflow/examples/retry_flow.out.txt,sha256=AtZEJMLGSZbHYt1dAB7qcz8s5yrQqigjxc708wvtqmI,116
78
- taskflow/examples/retry_flow.py,sha256=PZhcZoNwe8W9aJbRdDpVvT1Hu9m1gTpQy2xcnbKYhPQ,2268
79
- taskflow/examples/reverting_linear.out.txt,sha256=MzzbYDNBnyOlvGN_X2A7QEuSyBgYov_Miv-UBDwq9_E,132
80
- taskflow/examples/reverting_linear.py,sha256=-kisBKuntdZmt4gQ2Q4XBTxocRIc_3cdrASI4qNGARw,3543
81
- taskflow/examples/run_by_iter.out.txt,sha256=xKLg52D8UJZlRboEGCOk83neNYWtpq8SjAwqaRS68fU,823
82
- taskflow/examples/run_by_iter.py,sha256=_CmAHoNLIm6AqQ_LPr4WBTrGUgOeyH5nKJt1TKXK9xY,2620
83
- taskflow/examples/run_by_iter_enumerate.out.txt,sha256=d5__O4xsSBkO6l4BFK7hK1i97rB1GjhVD-379sIYlaE,849
84
- taskflow/examples/run_by_iter_enumerate.py,sha256=SfeeF8_9K_WZj2LMyO0rC5X_95Lg6LxU3Mzc2VS-aRQ,1720
85
- taskflow/examples/share_engine_thread.py,sha256=cgZYoJIbxp1zUU42cj5njs3PGJ1FiQwZoE4tnz0JNl4,2742
86
- taskflow/examples/simple_linear.out.txt,sha256=F4IDqbYYRPLLzYNXI3teAtgRfOqsAXQKTLY3fArFPoY,34
87
- taskflow/examples/simple_linear.py,sha256=V_V6ZhWKoqIqlOeHWwj0HqmuOqFDzOgK5c63CI6zV-M,2507
88
- taskflow/examples/simple_linear_listening.out.txt,sha256=1CEQbmwwmBe-YyWVGjjl17Elf70ZOLP9lqn-6Uj7Akk,300
89
- taskflow/examples/simple_linear_listening.py,sha256=47NCXWDsXyK6jtloJtAo4iJeVRsYiMvrs2UKjZjkr3E,3958
90
- taskflow/examples/simple_linear_pass.out.txt,sha256=Y4GkdMkyoqcwpR98MzRITGVsFRb0mtqbfJ4m2uNvuW4,114
91
- taskflow/examples/simple_linear_pass.py,sha256=zVQVR2KFZ_o9_25ii_gFgadMZ2hpEZ8Nmlpxh0Ub4Zs,1792
92
- taskflow/examples/simple_map_reduce.py,sha256=YYdGOGQtCgCPW4E6Wzy9NP5fEqfgD_ggcokvdFbe4Zs,3762
93
- taskflow/examples/switch_graph_flow.py,sha256=BIJXcz_6BdSR7xZ4s6fD5FmykaMpYGCcUzVs6Oy_42c,1904
94
- taskflow/examples/timing_listener.py,sha256=W6SKIOfImdUIrZfpjUgWu2vqC6vgRA8Ux8RKGKM-ScM,2034
95
- taskflow/examples/tox_conductor.py,sha256=0VpgXvsDNdRYQy8UJoOSy75Yz7HsYHftcWqdwZebyB4,8472
96
- taskflow/examples/wbe_event_sender.py,sha256=F0XJPf0VXtQQl1SML_5XaVE6d2NTNnorVDAR1XG1wPY,5547
97
- taskflow/examples/wbe_mandelbrot.out.txt,sha256=fdzWLYHe7PZPGF_RDQ1ty_IdzWSDTZVkpSawjlPlBVM,243
98
- taskflow/examples/wbe_mandelbrot.py,sha256=uSpRDOnN15Juyt5h09nvDgdmt7Na08tslMthUKbokvA,8842
99
- taskflow/examples/wbe_simple_linear.out.txt,sha256=w8vFgEkV3pBOAKNUPSJkufpTCwXr-ZvGwEjHbx6Q2cg,148
100
- taskflow/examples/wbe_simple_linear.py,sha256=dzwjWW6N29aDaipoeSzOoZEvLerf1NN7ngsy_k1Oku0,5413
101
- taskflow/examples/wrapped_exception.py,sha256=1rKO_UuvU9R0PgpiSAjdF_eeoFPH51iEEDB7LoHVUNE,4732
102
- taskflow/examples/resume_many_flows/my_flows.py,sha256=-cIktLf44U_Nnztezqzt1LsdmIpcO-BaqZYaoSHxev4,1288
103
- taskflow/examples/resume_many_flows/resume_all.py,sha256=MahlJx7a3LBh4V7aRu5n5G1qDivqMgcjxOm6KNKycVk,1729
104
- taskflow/examples/resume_many_flows/run_flow.py,sha256=MOD78Zg7IaSAVRoLPap36njTZWbHzdxz28fMaHUA_EU,1433
105
- taskflow/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
- taskflow/jobs/base.py,sha256=nowX7pKESnTz-_iPmg1vUQJ0bgO3HLOOtytOKOy12kA,22463
107
- taskflow/jobs/backends/__init__.py,sha256=ILlqq_U0FPM77nPQgx_OexjHxUvC5Tl4RXkX-IznSfw,2902
108
- taskflow/jobs/backends/impl_etcd.py,sha256=3o5xBe0UkqPo9b8LYcbHD2L7e5lDlJHjo8VQsyd4iIE,22067
109
- taskflow/jobs/backends/impl_redis.py,sha256=ZgxVSlAOncTE089a6c1qjafSIzv8_ekLQKvq1G_n7IE,43925
110
- taskflow/jobs/backends/impl_zookeeper.py,sha256=1Noi75aTH0NCx-qlsRExsx-QKBtY5j2PJb6RIi_Cm5o,37644
111
- taskflow/listeners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- taskflow/listeners/base.py,sha256=vhbh4CcTW9iulQCG-A5G0iJDp7-j1m1XALYRewOanik,7391
113
- taskflow/listeners/capturing.py,sha256=14wrkVMrlmPm5jTnTTFM0RFv4PuKMIaIEPmYA4Ki4TA,4329
114
- taskflow/listeners/claims.py,sha256=OVmh8xixuohxuYY6A0Nfy72GhDNut1cGzsowiMOUyUQ,4115
115
- taskflow/listeners/logging.py,sha256=1nIB7MrbCznugN8j9CDPZZgMxCtmqzlj1LOIxiDHLNA,8516
116
- taskflow/listeners/printing.py,sha256=OxLZSHKFuhO8F0SzsnXCAJrfIsNlu-VK_TWJWcug2Tg,1675
117
- taskflow/listeners/timing.py,sha256=Gq8BLTpIqFXPRxh9RCzIRJcA4lDFSAWwlXwCqwGWZ98,6943
118
- taskflow/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- taskflow/patterns/graph_flow.py,sha256=9AR9UAjv7uAUE9JfZZvZWvZIpLAwDl2Q-nCn6ASFYWY,15292
120
- taskflow/patterns/linear_flow.py,sha256=DZ3bAzrZJ2Zf3hRqRLpoNXi9qeUDMzJo7d0sV7Hb9Zk,2804
121
- taskflow/patterns/unordered_flow.py,sha256=Okei5mSYAHSzLOZMtHynC1vBFgY7O9E6Zloi2_pEaUE,2055
122
- taskflow/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- taskflow/persistence/base.py,sha256=QfDV1WKBvCYHbRga_gKKUzicsHxqpsTU2tU7YjxUkLU,4072
124
- taskflow/persistence/models.py,sha256=GTT4n75y5-imTYPEWTelwSYV6IidewObU_S_AnwUP7E,40762
125
- taskflow/persistence/path_based.py,sha256=0d4I9HgTdAhJarxEJkRiZNNxC-M2tbQebeDLby8PCwI,9545
126
- taskflow/persistence/backends/__init__.py,sha256=z5k5CZNjtbKvj2uxqNrdPmREDUGlTMrthcC723gPnsg,3352
127
- taskflow/persistence/backends/impl_dir.py,sha256=t8YQe4llF4ghguTh45BBEzRvvtpCllaAbuFZhOY_4os,6085
128
- taskflow/persistence/backends/impl_memory.py,sha256=PHKHqeV_KkkwCpT42J2j22o8gfdjAKt3recCP6k5TUw,13390
129
- taskflow/persistence/backends/impl_sqlalchemy.py,sha256=4YJp88fb2rfDw6Pxrnfebxpo1DhtY_fu8q_8BEnuwWk,25540
130
- taskflow/persistence/backends/impl_zookeeper.py,sha256=PaJmf-xDk7udmYzrMxRM-ARrd1HfAucqQjYIljmpixM,6188
131
- taskflow/persistence/backends/sqlalchemy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
- taskflow/persistence/backends/sqlalchemy/migration.py,sha256=YS4UPcygmYV1lRTogPUuyMM39DupIZ1LwuD23yoaEno,1140
133
- taskflow/persistence/backends/sqlalchemy/tables.py,sha256=CUHMWfVIK9bim-APx4QSmFuru1FyJIrOFl7hT51dQcs,4819
134
- taskflow/persistence/backends/sqlalchemy/alembic/README,sha256=K6farsrYU2S5Gb1nrz5I64Okvqu9LjOPTqXlBzvUitU,411
135
- taskflow/persistence/backends/sqlalchemy/alembic/alembic.ini,sha256=9Tb5IRu220Gl3gARRXRw0jL5Caql4JNjF1C-VUenEvI,420
136
- taskflow/persistence/backends/sqlalchemy/alembic/env.py,sha256=MLhIBeDXnJsA1xy112o87jsQnFQyIu-MctJvzMt1mrU,2683
137
- taskflow/persistence/backends/sqlalchemy/alembic/script.py.mako,sha256=D8kFI44_9vBJZrAYSkZxDTX2-S5Y-oEetEd9BKlo9S8,412
138
- taskflow/persistence/backends/sqlalchemy/alembic/versions/0bc3e1a3c135_set_result_meduimtext_type.py,sha256=3AM6AyxwC4seS5lo_XKixPxdw1XJB4ly5Og9WXnZ-FM,1315
139
- taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py,sha256=vFasN2Ug7J14HcHlOBmSQ6ssSpC3xqsbc2rqXPPIEVM,1255
140
- taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py,sha256=Nwd1QEjnu8A8ENlT-W8-mt9WEDHBXb8C4BFuF1vEDS4,1437
141
- taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py,sha256=ggibdDgBCqLXFyoYJKWAJ7uFxccFt8wOikiAXo6vW2E,5459
142
- taskflow/persistence/backends/sqlalchemy/alembic/versions/2ad4984f2864_switch_postgres_to_json_native.py,sha256=NDeudKpMs8iPQjnEYYSwZPXNDuBpG_FVkRTqT3RJlXs,1778
143
- taskflow/persistence/backends/sqlalchemy/alembic/versions/3162c0f3f8e4_add_revert_results_and_revert_failure_.py,sha256=-36Wzj6Vs5kkn1rUrYwYn38gay0uH3FLBjUfBsgPJqI,1315
144
- taskflow/persistence/backends/sqlalchemy/alembic/versions/40fc8c914bd2_fix_atomdetails_failure_size.py,sha256=yitIJ9n6B-_NHillKV3nhP6UX8bhrl0byM1-wphdj-Q,1205
145
- taskflow/persistence/backends/sqlalchemy/alembic/versions/589dccdf2b6e_rename_taskdetails_to_atomdetails.py,sha256=yZG_KcQEHJAkqQPypmFY2jiGIee2bS3yScLNgyxhpBU,1047
146
- taskflow/persistence/backends/sqlalchemy/alembic/versions/6df9422fcb43_fix_flowdetails_meta_size.py,sha256=C6I4HCGnmsjy5iVD2s98-ydWYL3nW25Ng1MaJ0svt4I,1072
147
- taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py,sha256=PG7eTGhTsmUbnD02Pyn-SQqC5f7544cYdTtvnnE0xBA,1315
148
- taskflow/persistence/backends/sqlalchemy/alembic/versions/README,sha256=AwegmiWc0MVoYyckyRzPFV4kVZqs8Q4w6eeMm0K3I_o,38
149
- taskflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- taskflow/tests/fixtures.py,sha256=VfGlusX2q79_ktPME4cm1qt_gN9VNRAwyYy5sDBAX0Y,2004
151
- taskflow/tests/test_examples.py,sha256=g2zhguLKE4Tex2e_vSmKMhsNXItnKWj89_VbnmgGejU,4925
152
- taskflow/tests/utils.py,sha256=siTwfev-swP-TsPrxgcxqURZzZcVpqJaCZqm674qgso,12123
153
- taskflow/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
- taskflow/tests/unit/test_arguments_passing.py,sha256=jK9-Z7xBfPI4nHB7_Bh_rllBH-X55v6wplxdrjwRS3E,9381
155
- taskflow/tests/unit/test_check_transition.py,sha256=DuxJAErCwheWPAdN_43LOOvZg00vmUoC-IzGgh642IM,6173
156
- taskflow/tests/unit/test_conductors.py,sha256=-TEP_8ap69bPHhEabx2Dk8qNJuI_kBNCSuPcGcvZl2w,18996
157
- taskflow/tests/unit/test_deciders.py,sha256=I5nDijs0Ybhw0HmCjY41N2L612U03-xH9Z7COWEaWy4,2733
158
- taskflow/tests/unit/test_engine_helpers.py,sha256=EPYzq1r5d3cvIxseBeTLGPY3ZkJtV7C6Zi8il-cO94o,5399
159
- taskflow/tests/unit/test_engines.py,sha256=30MZKR3hALtZk2CbY85T2iBIQOOWN-ZigPR6yYFd748,64570
160
- taskflow/tests/unit/test_exceptions.py,sha256=QDpa7X99Z5ET7s0dimV_YY4wit8Oqrcs5fZG7fTmX2Q,4362
161
- taskflow/tests/unit/test_failure.py,sha256=_2vT18lAeTkMRNepX7DdMPH1W7upJl9kfc7G-37EB3w,17863
162
- taskflow/tests/unit/test_flow_dependencies.py,sha256=PGPjxp-VeVp1E2Of6OAnEsyB0p4xTa-xd7NLnyjtl-A,18086
163
- taskflow/tests/unit/test_formatters.py,sha256=vSwbBbPmuET18Sc-3p1kCIHdb9g2F4RHxANXEJHzWQA,3921
164
- taskflow/tests/unit/test_functor_task.py,sha256=gAjJE2urR61-pFd98mtmAkSKYX2vPwp17ied3LjhdNQ,2528
165
- taskflow/tests/unit/test_listeners.py,sha256=3VZo4cNG0HYRuatqBezbNdXD99bLjgSiCdbD67SIu-A,15304
166
- taskflow/tests/unit/test_mapfunctor_task.py,sha256=1FI8AJxRUPxT7Lu6h9Mhd62srAnKfC2ETvGqA2772sM,2368
167
- taskflow/tests/unit/test_notifier.py,sha256=Q4xGl9e_LZRiJVpGR2FbG2qSp9CqlP65aDsaIKxPqHI,7894
168
- taskflow/tests/unit/test_progress.py,sha256=oeYFeWuHde1D2cAahhE1yN1NznNcXk7ajw0Z2yCyZkM,5259
169
- taskflow/tests/unit/test_reducefunctor_task.py,sha256=vM4P5h80-Ex4uq2N_dNmTFL49Ks3iFmP5dMbZEk0YQ0,2106
170
- taskflow/tests/unit/test_retries.py,sha256=xxHEBNoiaDR5WMztzm5CidqGrOkKJ2yqs2J69P1KwkE,58658
171
- taskflow/tests/unit/test_states.py,sha256=iYyHo9YzHBMjlYaqlzZJTcKjB53WCqf5Fw3OGoVKVME,3660
172
- taskflow/tests/unit/test_storage.py,sha256=SlShgJ4hirdnggDkpB3GoosY--4B0PqMOVvMBG5D6g4,23520
173
- taskflow/tests/unit/test_suspend.py,sha256=2d5y15Fw6NESJ4oEUAA7dosECGb2-CLkkgXULqwNtWw,10077
174
- taskflow/tests/unit/test_task.py,sha256=PGXlOIhpYdCo8hTScleIHxQ5gGa-1b1MJhwaiB_fQss,15947
175
- taskflow/tests/unit/test_types.py,sha256=uecv0lBqPAfAdTDXYMoM8Pi-P9JROR-aA_xkK0trJSQ,20225
176
- taskflow/tests/unit/test_utils.py,sha256=m5Wct0kqv8CoX03sUBXcVczAuGcF-AQtbYPxUDq64oo,11035
177
- taskflow/tests/unit/test_utils_async_utils.py,sha256=BkVaxbRO3XX2ueAy6kSplq4D1SVos8DOaf9V1mueEf4,981
178
- taskflow/tests/unit/test_utils_binary.py,sha256=OdF2BIeUCIP4hXi6QsYv8IqZtDpmqCZySlv5nLZ6UOk,3168
179
- taskflow/tests/unit/test_utils_iter_utils.py,sha256=jzUJzUtfL1EPRoQLoUzZ0chlkuTKoqQKHjz7F-LaZ3Y,5716
180
- taskflow/tests/unit/test_utils_kazoo_utils.py,sha256=lYV5ust99XF-ExaPaZ6_laPSJDewT6cTrBWw9X13nGw,1963
181
- taskflow/tests/unit/test_utils_threading_utils.py,sha256=JxWTMFQwjUXmsEBKl6c207VPpZn3Wh_lY3MYH-iEFUA,5503
182
- taskflow/tests/unit/action_engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- taskflow/tests/unit/action_engine/test_builder.py,sha256=tuL4LoPpnvqnGBE9qAoVXVHLzARGwhhOu4q1cSnvZ68,12866
184
- taskflow/tests/unit/action_engine/test_compile.py,sha256=dFaYxLiaCCoMY9TsrsQgN_wfwuu8rvWCW6hwABWlIbU,23759
185
- taskflow/tests/unit/action_engine/test_creation.py,sha256=By8RzbkFI2uyQnU66n5Ul1-1XIJo7x7ybcx5Ln5iYWs,3681
186
- taskflow/tests/unit/action_engine/test_process_executor.py,sha256=WDqA_zv1tsS2bPN7lCqwE6avgjAlO8D0_znnF9jhUAQ,3613
187
- taskflow/tests/unit/action_engine/test_scoping.py,sha256=wIB9C3LMgfsqO6cdz_ZdhQcjrOFWAFn-9F6rEMjizgM,11327
188
- taskflow/tests/unit/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- taskflow/tests/unit/jobs/base.py,sha256=wYv5ziDeVdYn2nhuMSfYTWU39Xxpv8lRKvJbGsB79lM,8447
190
- taskflow/tests/unit/jobs/test_entrypoint.py,sha256=t2m5zeYhjb2pmPxBgGO_0AMWR0dabWxglDBODzLE0fY,2220
191
- taskflow/tests/unit/jobs/test_etcd_job.py,sha256=EhcdScOz87evJln_srG091w0L3gJWAxApw6n3Ypb2fo,16576
192
- taskflow/tests/unit/jobs/test_redis_job.py,sha256=_OqqMe4k9EAtjP6Y9jMBM6dUE3sI_cJii3uXAsafVTE,7444
193
- taskflow/tests/unit/jobs/test_zk_job.py,sha256=e5CdkqmiQY_jzNtcHsxKcsS9uY7k-D8CMGkqt1J_bqE,13789
194
- taskflow/tests/unit/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- taskflow/tests/unit/patterns/test_graph_flow.py,sha256=g5x6RdEgD6Sws3C5zmgz3kFpbJLEoi6i42RSEk5Vlso,12452
196
- taskflow/tests/unit/patterns/test_linear_flow.py,sha256=jSgrxvCk-Ovly1NZSVY04pCRDjzWtkESQf--PuZbH6E,5133
197
- taskflow/tests/unit/patterns/test_unordered_flow.py,sha256=kN4o_0pP4losZVba0uDtJvHZwJb8pMUyVRP8cCz__1g,4981
198
- taskflow/tests/unit/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
- taskflow/tests/unit/persistence/base.py,sha256=Pot7g2ceqHuw-EmuYTm2SS0iQi1yruHgp-zM-pTQ6l8,16547
200
- taskflow/tests/unit/persistence/test_dir_persistence.py,sha256=hHfTy_KckkW95PA-gfk17kO8kQtNh1_62UNWeXpec2M,3929
201
- taskflow/tests/unit/persistence/test_memory_persistence.py,sha256=Kojaw3nX0RZrU2yPZ_FjZGQ4p5AA-VAPh6gxs48VVz8,7871
202
- taskflow/tests/unit/persistence/test_sql_persistence.py,sha256=jchWNZkLEDAkw5wFvdTHeAAUGPsJtxpsnp8Qp8zQAv0,10260
203
- taskflow/tests/unit/persistence/test_zk_persistence.py,sha256=ilj1vtTgN6_VtJV13ueYvK657jHvcwXgHcQ8pH76R3g,3648
204
- taskflow/tests/unit/worker_based/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- taskflow/tests/unit/worker_based/test_creation.py,sha256=r7DV1NfgF3Ulw3DOhX8L6lZ0poDjo6nwexhAzXPq9Vc,4045
206
- taskflow/tests/unit/worker_based/test_dispatcher.py,sha256=TOqdvpGIvG7JA1IpioVwxq7jIvbMU3MC9CEnhq29SkE,2915
207
- taskflow/tests/unit/worker_based/test_endpoint.py,sha256=G0T1CK0xkSqAMqotvkLvx4HO5dHa6XFjxDD5VtrQ1d8,3128
208
- taskflow/tests/unit/worker_based/test_executor.py,sha256=l-KArQioziEaWymbAVBzWcCp5ZoqysLpNgUm1DTI9f8,13622
209
- taskflow/tests/unit/worker_based/test_message_pump.py,sha256=MXMr6yPoEUxpmcAmRD0-_Y-Ndh0jZU9OkOWv9ceHRZk,4894
210
- taskflow/tests/unit/worker_based/test_pipeline.py,sha256=b9bDyy03TNdUTPR39gtGo5tJu-qMSJQq1jMuyRCKXxw,3812
211
- taskflow/tests/unit/worker_based/test_protocol.py,sha256=8FTuPszt1Njp-uuuLI5FEuwOOw_UjYzvtRIYMlWfbLA,7745
212
- taskflow/tests/unit/worker_based/test_proxy.py,sha256=MlnTEqfUypGrmzWBY3vXYF5-K6brGUoozXdTjKOIvAc,9920
213
- taskflow/tests/unit/worker_based/test_server.py,sha256=GasvLzOWUN5T_1o8sJTfaKFICSet-dh8G_jXlOoa7wA,14344
214
- taskflow/tests/unit/worker_based/test_types.py,sha256=EXKG4ihOrQqKCzo7NQwRlk1peXku8OjGJy1B4GLNOFU,3368
215
- taskflow/tests/unit/worker_based/test_worker.py,sha256=1jmGrtL6atPu88zBRTMOe1pUlUFAZzuXwM7sQxIX2lY,7109
216
- taskflow/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
217
- taskflow/types/entity.py,sha256=vIPHHNnA7givgPh-vOIzSEP3Hu9baRwl1fQXtAJ9y-g,1587
218
- taskflow/types/failure.py,sha256=JVrk2Z4JbDohwV7MGa5jxwkXXx8BcHbocLizXlH2kcM,21053
219
- taskflow/types/graph.py,sha256=T0JbyYfHVtNlzQW_ATuQngc7e-WpVS7NMnOFpJY6xSc,10504
220
- taskflow/types/latch.py,sha256=ZYE7qQeyTaKK9ChIVJx7Y0U0iBBjsuVU_-kpwIWd_-w,2193
221
- taskflow/types/notifier.py,sha256=2N_GqBcseYPD9DSsBKRCgvuuSvCMZYj7MN-oPcYDmc4,14071
222
- taskflow/types/sets.py,sha256=FFdJv4S0C5_1-xi_lsg6rzMZTNEgI7rbtEzMTZOREI0,4004
223
- taskflow/types/timing.py,sha256=TR4FrQnZivEiUJ0r5Z6iiVFvXZbexMo20gfoOHGxr0I,2313
224
- taskflow/types/tree.py,sha256=j-5i3haMJ259ATNI4EccQjhg60_0mXHStIvOgKFM-LE,15820
225
- taskflow/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- taskflow/utils/async_utils.py,sha256=aoRp7cY8cm5jSsOy3RyV5Fjr27U2J_V6ldMYVWTPJJ4,855
227
- taskflow/utils/banner.py,sha256=_44ZM33gye8orjUN4B_VdQe8ksEPAK3WI6pfrMMiEiE,3635
228
- taskflow/utils/eventlet_utils.py,sha256=cxXDIkGb2qTsAZ4lu9XbKZj9GNQ1FBkSCYeHXhYk0ak,1151
229
- taskflow/utils/iter_utils.py,sha256=RAMpEe7pYsXXoObke0Jh2ePpfdX7cTDxhTgHua2v37M,4674
230
- taskflow/utils/kazoo_utils.py,sha256=fCHMC-a5ayJqzBVjdTiy1WqBE6hSmRwxx7GkF-jd6Nw,9915
231
- taskflow/utils/kombu_utils.py,sha256=tgAN6c7kSggbT0rMn3rVzkKm9e1CmW90Jpb5279G2zg,2528
232
- taskflow/utils/misc.py,sha256=yHfRx6P0TqADiL-f-m5H74ugG2U7p5ktYkMK9DVGdWA,18504
233
- taskflow/utils/persistence_utils.py,sha256=GWceOcxdfsf-MtrdR74xmC2khClF8im6DpZmR2UpYuU,3899
234
- taskflow/utils/redis_utils.py,sha256=zJBvXmlNZUQ_gwGZAaNLySVtCtou3YayHAkGSCNKDUw,4345
235
- taskflow/utils/schema_utils.py,sha256=Zf6eL0NK0_TVFD_Sc1yEZYswFz9K0tet1Dmj48F8uMA,1434
236
- taskflow/utils/threading_utils.py,sha256=eiaNUK127DOBr_zfj3-j4Oi5a2dsD7VunVeTYN6NjPo,5849
237
- taskflow-5.11.0.dist-info/AUTHORS,sha256=uKVGnRq9UrIKLl5MhXJ9QuqzKXynjWcZcuaW_j9Eh5g,4564
238
- taskflow-5.11.0.dist-info/LICENSE,sha256=0t4vVm0tDgtQn7DqH6Nmn0kGSrHeIcV0U8qzdQojTo8,10143
239
- taskflow-5.11.0.dist-info/METADATA,sha256=oUqfps2VmBXLf_IRL43orm4JNQ74ZJ66EKP7u0kPBM0,5540
240
- taskflow-5.11.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
241
- taskflow-5.11.0.dist-info/entry_points.txt,sha256=-cLcvncQdUIhZ0pSd10UBTItZsJxlgu1uQIhkcpzh4Y,1235
242
- taskflow-5.11.0.dist-info/pbr.json,sha256=0fWhB8bsCBvlzkItWXovHRIzyqM_1IBqFWXsWINm1SE,47
243
- taskflow-5.11.0.dist-info/top_level.txt,sha256=PsdN41vwysesDlqHCSVVXH4mkTMdMiZFW_yHEAXiZE4,9
244
- taskflow-5.11.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- {"git_version": "3d0a7efb", "is_release": true}