temporalio 0.0.0 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +301 -0
  3. data/bridge/Cargo.lock +2888 -0
  4. data/bridge/Cargo.toml +27 -0
  5. data/bridge/sdk-core/ARCHITECTURE.md +76 -0
  6. data/bridge/sdk-core/Cargo.lock +2606 -0
  7. data/bridge/sdk-core/Cargo.toml +2 -0
  8. data/bridge/sdk-core/LICENSE.txt +23 -0
  9. data/bridge/sdk-core/README.md +104 -0
  10. data/bridge/sdk-core/arch_docs/diagrams/README.md +10 -0
  11. data/bridge/sdk-core/arch_docs/diagrams/sticky_queues.puml +40 -0
  12. data/bridge/sdk-core/arch_docs/diagrams/workflow_internals.svg +1 -0
  13. data/bridge/sdk-core/arch_docs/sticky_queues.md +51 -0
  14. data/bridge/sdk-core/client/Cargo.toml +40 -0
  15. data/bridge/sdk-core/client/LICENSE.txt +23 -0
  16. data/bridge/sdk-core/client/src/lib.rs +1286 -0
  17. data/bridge/sdk-core/client/src/metrics.rs +165 -0
  18. data/bridge/sdk-core/client/src/raw.rs +932 -0
  19. data/bridge/sdk-core/client/src/retry.rs +751 -0
  20. data/bridge/sdk-core/client/src/workflow_handle/mod.rs +185 -0
  21. data/bridge/sdk-core/core/Cargo.toml +116 -0
  22. data/bridge/sdk-core/core/LICENSE.txt +23 -0
  23. data/bridge/sdk-core/core/benches/workflow_replay.rs +76 -0
  24. data/bridge/sdk-core/core/src/abstractions.rs +166 -0
  25. data/bridge/sdk-core/core/src/core_tests/activity_tasks.rs +1014 -0
  26. data/bridge/sdk-core/core/src/core_tests/child_workflows.rs +221 -0
  27. data/bridge/sdk-core/core/src/core_tests/determinism.rs +107 -0
  28. data/bridge/sdk-core/core/src/core_tests/local_activities.rs +925 -0
  29. data/bridge/sdk-core/core/src/core_tests/mod.rs +100 -0
  30. data/bridge/sdk-core/core/src/core_tests/queries.rs +894 -0
  31. data/bridge/sdk-core/core/src/core_tests/replay_flag.rs +65 -0
  32. data/bridge/sdk-core/core/src/core_tests/workers.rs +259 -0
  33. data/bridge/sdk-core/core/src/core_tests/workflow_cancels.rs +124 -0
  34. data/bridge/sdk-core/core/src/core_tests/workflow_tasks.rs +2090 -0
  35. data/bridge/sdk-core/core/src/ephemeral_server/mod.rs +515 -0
  36. data/bridge/sdk-core/core/src/lib.rs +282 -0
  37. data/bridge/sdk-core/core/src/pollers/mod.rs +54 -0
  38. data/bridge/sdk-core/core/src/pollers/poll_buffer.rs +297 -0
  39. data/bridge/sdk-core/core/src/protosext/mod.rs +428 -0
  40. data/bridge/sdk-core/core/src/replay/mod.rs +215 -0
  41. data/bridge/sdk-core/core/src/retry_logic.rs +202 -0
  42. data/bridge/sdk-core/core/src/telemetry/log_export.rs +190 -0
  43. data/bridge/sdk-core/core/src/telemetry/metrics.rs +428 -0
  44. data/bridge/sdk-core/core/src/telemetry/mod.rs +407 -0
  45. data/bridge/sdk-core/core/src/telemetry/prometheus_server.rs +78 -0
  46. data/bridge/sdk-core/core/src/test_help/mod.rs +889 -0
  47. data/bridge/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +580 -0
  48. data/bridge/sdk-core/core/src/worker/activities/local_activities.rs +1048 -0
  49. data/bridge/sdk-core/core/src/worker/activities.rs +481 -0
  50. data/bridge/sdk-core/core/src/worker/client/mocks.rs +87 -0
  51. data/bridge/sdk-core/core/src/worker/client.rs +373 -0
  52. data/bridge/sdk-core/core/src/worker/mod.rs +570 -0
  53. data/bridge/sdk-core/core/src/worker/workflow/bridge.rs +37 -0
  54. data/bridge/sdk-core/core/src/worker/workflow/driven_workflow.rs +101 -0
  55. data/bridge/sdk-core/core/src/worker/workflow/history_update.rs +532 -0
  56. data/bridge/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +907 -0
  57. data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +294 -0
  58. data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +167 -0
  59. data/bridge/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +858 -0
  60. data/bridge/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +136 -0
  61. data/bridge/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +157 -0
  62. data/bridge/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +129 -0
  63. data/bridge/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +1450 -0
  64. data/bridge/sdk-core/core/src/worker/workflow/machines/mod.rs +316 -0
  65. data/bridge/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +178 -0
  66. data/bridge/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +708 -0
  67. data/bridge/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +439 -0
  68. data/bridge/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +435 -0
  69. data/bridge/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +175 -0
  70. data/bridge/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +242 -0
  71. data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +96 -0
  72. data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +1200 -0
  73. data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +272 -0
  74. data/bridge/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +198 -0
  75. data/bridge/sdk-core/core/src/worker/workflow/managed_run.rs +655 -0
  76. data/bridge/sdk-core/core/src/worker/workflow/mod.rs +1200 -0
  77. data/bridge/sdk-core/core/src/worker/workflow/run_cache.rs +145 -0
  78. data/bridge/sdk-core/core/src/worker/workflow/wft_poller.rs +88 -0
  79. data/bridge/sdk-core/core/src/worker/workflow/workflow_stream.rs +985 -0
  80. data/bridge/sdk-core/core-api/Cargo.toml +32 -0
  81. data/bridge/sdk-core/core-api/LICENSE.txt +23 -0
  82. data/bridge/sdk-core/core-api/src/errors.rs +95 -0
  83. data/bridge/sdk-core/core-api/src/lib.rs +109 -0
  84. data/bridge/sdk-core/core-api/src/telemetry.rs +147 -0
  85. data/bridge/sdk-core/core-api/src/worker.rs +148 -0
  86. data/bridge/sdk-core/etc/deps.svg +162 -0
  87. data/bridge/sdk-core/etc/dynamic-config.yaml +2 -0
  88. data/bridge/sdk-core/etc/otel-collector-config.yaml +36 -0
  89. data/bridge/sdk-core/etc/prometheus.yaml +6 -0
  90. data/bridge/sdk-core/etc/regen-depgraph.sh +5 -0
  91. data/bridge/sdk-core/fsm/Cargo.toml +18 -0
  92. data/bridge/sdk-core/fsm/LICENSE.txt +23 -0
  93. data/bridge/sdk-core/fsm/README.md +3 -0
  94. data/bridge/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +27 -0
  95. data/bridge/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +23 -0
  96. data/bridge/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +647 -0
  97. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/progress.rs +8 -0
  98. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.rs +18 -0
  99. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.stderr +12 -0
  100. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dynamic_dest_pass.rs +41 -0
  101. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.rs +14 -0
  102. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.stderr +11 -0
  103. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_arg_pass.rs +32 -0
  104. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_pass.rs +31 -0
  105. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/medium_complex_pass.rs +46 -0
  106. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.rs +29 -0
  107. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +12 -0
  108. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/simple_pass.rs +32 -0
  109. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.rs +18 -0
  110. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.stderr +5 -0
  111. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.rs +11 -0
  112. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.stderr +5 -0
  113. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.rs +11 -0
  114. data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.stderr +5 -0
  115. data/bridge/sdk-core/fsm/rustfsm_trait/Cargo.toml +14 -0
  116. data/bridge/sdk-core/fsm/rustfsm_trait/LICENSE.txt +23 -0
  117. data/bridge/sdk-core/fsm/rustfsm_trait/src/lib.rs +249 -0
  118. data/bridge/sdk-core/fsm/src/lib.rs +2 -0
  119. data/bridge/sdk-core/histories/evict_while_la_running_no_interference-23_history.bin +0 -0
  120. data/bridge/sdk-core/histories/evict_while_la_running_no_interference-85_history.bin +0 -0
  121. data/bridge/sdk-core/histories/fail_wf_task.bin +0 -0
  122. data/bridge/sdk-core/histories/timer_workflow_history.bin +0 -0
  123. data/bridge/sdk-core/integ-with-otel.sh +7 -0
  124. data/bridge/sdk-core/protos/api_upstream/README.md +9 -0
  125. data/bridge/sdk-core/protos/api_upstream/api-linter.yaml +40 -0
  126. data/bridge/sdk-core/protos/api_upstream/buf.yaml +9 -0
  127. data/bridge/sdk-core/protos/api_upstream/build/go.mod +7 -0
  128. data/bridge/sdk-core/protos/api_upstream/build/go.sum +5 -0
  129. data/bridge/sdk-core/protos/api_upstream/build/tools.go +29 -0
  130. data/bridge/sdk-core/protos/api_upstream/dependencies/gogoproto/gogo.proto +141 -0
  131. data/bridge/sdk-core/protos/api_upstream/go.mod +6 -0
  132. data/bridge/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +89 -0
  133. data/bridge/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +260 -0
  134. data/bridge/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +112 -0
  135. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +47 -0
  136. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +57 -0
  137. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +56 -0
  138. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +170 -0
  139. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +118 -0
  140. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/interaction_type.proto +39 -0
  141. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +51 -0
  142. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +50 -0
  143. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +41 -0
  144. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +60 -0
  145. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +59 -0
  146. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +40 -0
  147. data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +122 -0
  148. data/bridge/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +108 -0
  149. data/bridge/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +114 -0
  150. data/bridge/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +56 -0
  151. data/bridge/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +758 -0
  152. data/bridge/sdk-core/protos/api_upstream/temporal/api/interaction/v1/message.proto +87 -0
  153. data/bridge/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +97 -0
  154. data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +121 -0
  155. data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +80 -0
  156. data/bridge/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +61 -0
  157. data/bridge/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +55 -0
  158. data/bridge/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +379 -0
  159. data/bridge/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +108 -0
  160. data/bridge/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +59 -0
  161. data/bridge/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +146 -0
  162. data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +1168 -0
  163. data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +415 -0
  164. data/bridge/sdk-core/protos/grpc/health/v1/health.proto +63 -0
  165. data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_result/activity_result.proto +78 -0
  166. data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_task/activity_task.proto +79 -0
  167. data/bridge/sdk-core/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +77 -0
  168. data/bridge/sdk-core/protos/local/temporal/sdk/core/common/common.proto +15 -0
  169. data/bridge/sdk-core/protos/local/temporal/sdk/core/core_interface.proto +30 -0
  170. data/bridge/sdk-core/protos/local/temporal/sdk/core/external_data/external_data.proto +30 -0
  171. data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +263 -0
  172. data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +304 -0
  173. data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +29 -0
  174. data/bridge/sdk-core/protos/testsrv_upstream/api-linter.yaml +38 -0
  175. data/bridge/sdk-core/protos/testsrv_upstream/buf.yaml +13 -0
  176. data/bridge/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +141 -0
  177. data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +63 -0
  178. data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +90 -0
  179. data/bridge/sdk-core/rustfmt.toml +1 -0
  180. data/bridge/sdk-core/sdk/Cargo.toml +47 -0
  181. data/bridge/sdk-core/sdk/LICENSE.txt +23 -0
  182. data/bridge/sdk-core/sdk/src/activity_context.rs +230 -0
  183. data/bridge/sdk-core/sdk/src/app_data.rs +37 -0
  184. data/bridge/sdk-core/sdk/src/interceptors.rs +50 -0
  185. data/bridge/sdk-core/sdk/src/lib.rs +794 -0
  186. data/bridge/sdk-core/sdk/src/payload_converter.rs +11 -0
  187. data/bridge/sdk-core/sdk/src/workflow_context/options.rs +295 -0
  188. data/bridge/sdk-core/sdk/src/workflow_context.rs +694 -0
  189. data/bridge/sdk-core/sdk/src/workflow_future.rs +499 -0
  190. data/bridge/sdk-core/sdk-core-protos/Cargo.toml +30 -0
  191. data/bridge/sdk-core/sdk-core-protos/LICENSE.txt +23 -0
  192. data/bridge/sdk-core/sdk-core-protos/build.rs +107 -0
  193. data/bridge/sdk-core/sdk-core-protos/src/constants.rs +7 -0
  194. data/bridge/sdk-core/sdk-core-protos/src/history_builder.rs +544 -0
  195. data/bridge/sdk-core/sdk-core-protos/src/history_info.rs +230 -0
  196. data/bridge/sdk-core/sdk-core-protos/src/lib.rs +1970 -0
  197. data/bridge/sdk-core/sdk-core-protos/src/task_token.rs +38 -0
  198. data/bridge/sdk-core/sdk-core-protos/src/utilities.rs +14 -0
  199. data/bridge/sdk-core/test-utils/Cargo.toml +36 -0
  200. data/bridge/sdk-core/test-utils/src/canned_histories.rs +1579 -0
  201. data/bridge/sdk-core/test-utils/src/histfetch.rs +28 -0
  202. data/bridge/sdk-core/test-utils/src/lib.rs +650 -0
  203. data/bridge/sdk-core/tests/integ_tests/client_tests.rs +36 -0
  204. data/bridge/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +128 -0
  205. data/bridge/sdk-core/tests/integ_tests/heartbeat_tests.rs +221 -0
  206. data/bridge/sdk-core/tests/integ_tests/metrics_tests.rs +37 -0
  207. data/bridge/sdk-core/tests/integ_tests/polling_tests.rs +133 -0
  208. data/bridge/sdk-core/tests/integ_tests/queries_tests.rs +437 -0
  209. data/bridge/sdk-core/tests/integ_tests/visibility_tests.rs +93 -0
  210. data/bridge/sdk-core/tests/integ_tests/workflow_tests/activities.rs +878 -0
  211. data/bridge/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +61 -0
  212. data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +59 -0
  213. data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +58 -0
  214. data/bridge/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +50 -0
  215. data/bridge/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +60 -0
  216. data/bridge/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +54 -0
  217. data/bridge/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +788 -0
  218. data/bridge/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +53 -0
  219. data/bridge/sdk-core/tests/integ_tests/workflow_tests/patches.rs +113 -0
  220. data/bridge/sdk-core/tests/integ_tests/workflow_tests/replay.rs +223 -0
  221. data/bridge/sdk-core/tests/integ_tests/workflow_tests/resets.rs +93 -0
  222. data/bridge/sdk-core/tests/integ_tests/workflow_tests/signals.rs +167 -0
  223. data/bridge/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +99 -0
  224. data/bridge/sdk-core/tests/integ_tests/workflow_tests/timers.rs +131 -0
  225. data/bridge/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +75 -0
  226. data/bridge/sdk-core/tests/integ_tests/workflow_tests.rs +597 -0
  227. data/bridge/sdk-core/tests/load_tests.rs +191 -0
  228. data/bridge/sdk-core/tests/main.rs +113 -0
  229. data/bridge/sdk-core/tests/runner.rs +93 -0
  230. data/bridge/src/connection.rs +186 -0
  231. data/bridge/src/lib.rs +239 -0
  232. data/bridge/src/runtime.rs +54 -0
  233. data/bridge/src/worker.rs +124 -0
  234. data/ext/Rakefile +9 -0
  235. data/lib/bridge.so +0 -0
  236. data/lib/gen/dependencies/gogoproto/gogo_pb.rb +14 -0
  237. data/lib/gen/temporal/api/batch/v1/message_pb.rb +50 -0
  238. data/lib/gen/temporal/api/command/v1/message_pb.rb +174 -0
  239. data/lib/gen/temporal/api/common/v1/message_pb.rb +69 -0
  240. data/lib/gen/temporal/api/enums/v1/batch_operation_pb.rb +33 -0
  241. data/lib/gen/temporal/api/enums/v1/command_type_pb.rb +39 -0
  242. data/lib/gen/temporal/api/enums/v1/common_pb.rb +42 -0
  243. data/lib/gen/temporal/api/enums/v1/event_type_pb.rb +68 -0
  244. data/lib/gen/temporal/api/enums/v1/failed_cause_pb.rb +77 -0
  245. data/lib/gen/temporal/api/enums/v1/interaction_type_pb.rb +25 -0
  246. data/lib/gen/temporal/api/enums/v1/namespace_pb.rb +37 -0
  247. data/lib/gen/temporal/api/enums/v1/query_pb.rb +31 -0
  248. data/lib/gen/temporal/api/enums/v1/reset_pb.rb +24 -0
  249. data/lib/gen/temporal/api/enums/v1/schedule_pb.rb +28 -0
  250. data/lib/gen/temporal/api/enums/v1/task_queue_pb.rb +30 -0
  251. data/lib/gen/temporal/api/enums/v1/update_pb.rb +23 -0
  252. data/lib/gen/temporal/api/enums/v1/workflow_pb.rb +89 -0
  253. data/lib/gen/temporal/api/errordetails/v1/message_pb.rb +84 -0
  254. data/lib/gen/temporal/api/failure/v1/message_pb.rb +83 -0
  255. data/lib/gen/temporal/api/filter/v1/message_pb.rb +40 -0
  256. data/lib/gen/temporal/api/history/v1/message_pb.rb +490 -0
  257. data/lib/gen/temporal/api/interaction/v1/message_pb.rb +49 -0
  258. data/lib/gen/temporal/api/namespace/v1/message_pb.rb +63 -0
  259. data/lib/gen/temporal/api/operatorservice/v1/request_response_pb.rb +85 -0
  260. data/lib/gen/temporal/api/operatorservice/v1/service_pb.rb +20 -0
  261. data/lib/gen/temporal/api/query/v1/message_pb.rb +38 -0
  262. data/lib/gen/temporal/api/replication/v1/message_pb.rb +37 -0
  263. data/lib/gen/temporal/api/schedule/v1/message_pb.rb +149 -0
  264. data/lib/gen/temporal/api/taskqueue/v1/message_pb.rb +73 -0
  265. data/lib/gen/temporal/api/version/v1/message_pb.rb +41 -0
  266. data/lib/gen/temporal/api/workflow/v1/message_pb.rb +111 -0
  267. data/lib/gen/temporal/api/workflowservice/v1/request_response_pb.rb +788 -0
  268. data/lib/gen/temporal/api/workflowservice/v1/service_pb.rb +20 -0
  269. data/lib/gen/temporal/sdk/core/activity_result/activity_result_pb.rb +58 -0
  270. data/lib/gen/temporal/sdk/core/activity_task/activity_task_pb.rb +57 -0
  271. data/lib/gen/temporal/sdk/core/bridge/bridge_pb.rb +222 -0
  272. data/lib/gen/temporal/sdk/core/child_workflow/child_workflow_pb.rb +57 -0
  273. data/lib/gen/temporal/sdk/core/common/common_pb.rb +22 -0
  274. data/lib/gen/temporal/sdk/core/core_interface_pb.rb +34 -0
  275. data/lib/gen/temporal/sdk/core/external_data/external_data_pb.rb +27 -0
  276. data/lib/gen/temporal/sdk/core/workflow_activation/workflow_activation_pb.rb +165 -0
  277. data/lib/gen/temporal/sdk/core/workflow_commands/workflow_commands_pb.rb +196 -0
  278. data/lib/gen/temporal/sdk/core/workflow_completion/workflow_completion_pb.rb +34 -0
  279. data/lib/temporalio/activity/context.rb +97 -0
  280. data/lib/temporalio/activity/info.rb +67 -0
  281. data/lib/temporalio/activity.rb +85 -0
  282. data/lib/temporalio/bridge/error.rb +8 -0
  283. data/lib/temporalio/bridge.rb +14 -0
  284. data/lib/temporalio/client/implementation.rb +340 -0
  285. data/lib/temporalio/client/workflow_handle.rb +243 -0
  286. data/lib/temporalio/client.rb +131 -0
  287. data/lib/temporalio/connection.rb +751 -0
  288. data/lib/temporalio/data_converter.rb +191 -0
  289. data/lib/temporalio/error/failure.rb +194 -0
  290. data/lib/temporalio/error/workflow_failure.rb +19 -0
  291. data/lib/temporalio/errors.rb +40 -0
  292. data/lib/temporalio/failure_converter/base.rb +26 -0
  293. data/lib/temporalio/failure_converter/basic.rb +319 -0
  294. data/lib/temporalio/failure_converter.rb +7 -0
  295. data/lib/temporalio/interceptor/chain.rb +28 -0
  296. data/lib/temporalio/interceptor/client.rb +123 -0
  297. data/lib/temporalio/payload_codec/base.rb +32 -0
  298. data/lib/temporalio/payload_converter/base.rb +24 -0
  299. data/lib/temporalio/payload_converter/bytes.rb +27 -0
  300. data/lib/temporalio/payload_converter/composite.rb +49 -0
  301. data/lib/temporalio/payload_converter/encoding_base.rb +35 -0
  302. data/lib/temporalio/payload_converter/json.rb +26 -0
  303. data/lib/temporalio/payload_converter/nil.rb +26 -0
  304. data/lib/temporalio/payload_converter.rb +14 -0
  305. data/lib/temporalio/retry_policy.rb +82 -0
  306. data/lib/temporalio/retry_state.rb +35 -0
  307. data/lib/temporalio/runtime.rb +25 -0
  308. data/lib/temporalio/timeout_type.rb +29 -0
  309. data/lib/temporalio/version.rb +3 -0
  310. data/lib/temporalio/worker/activity_runner.rb +92 -0
  311. data/lib/temporalio/worker/activity_worker.rb +138 -0
  312. data/lib/temporalio/worker/reactor.rb +46 -0
  313. data/lib/temporalio/worker/runner.rb +63 -0
  314. data/lib/temporalio/worker/sync_worker.rb +88 -0
  315. data/lib/temporalio/worker/thread_pool_executor.rb +51 -0
  316. data/lib/temporalio/worker.rb +198 -0
  317. data/lib/temporalio/workflow/execution_info.rb +54 -0
  318. data/lib/temporalio/workflow/execution_status.rb +36 -0
  319. data/lib/temporalio/workflow/id_reuse_policy.rb +36 -0
  320. data/lib/temporalio/workflow/query_reject_condition.rb +33 -0
  321. data/lib/temporalio.rb +12 -1
  322. data/lib/thermite_patch.rb +23 -0
  323. data/temporalio.gemspec +45 -0
  324. metadata +566 -9
  325. data/lib/temporal/version.rb +0 -3
  326. data/lib/temporal.rb +0 -4
  327. data/temporal.gemspec +0 -20
@@ -0,0 +1,85 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/operatorservice/v1/request_response.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'temporal/api/enums/v1/common_pb'
7
+
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_file("temporal/api/operatorservice/v1/request_response.proto", :syntax => :proto3) do
10
+ add_message "temporal.api.operatorservice.v1.AddSearchAttributesRequest" do
11
+ map :search_attributes, :string, :enum, 1, "temporal.api.enums.v1.IndexedValueType"
12
+ end
13
+ add_message "temporal.api.operatorservice.v1.AddSearchAttributesResponse" do
14
+ end
15
+ add_message "temporal.api.operatorservice.v1.RemoveSearchAttributesRequest" do
16
+ repeated :search_attributes, :string, 1
17
+ end
18
+ add_message "temporal.api.operatorservice.v1.RemoveSearchAttributesResponse" do
19
+ end
20
+ add_message "temporal.api.operatorservice.v1.ListSearchAttributesRequest" do
21
+ end
22
+ add_message "temporal.api.operatorservice.v1.ListSearchAttributesResponse" do
23
+ map :custom_attributes, :string, :enum, 1, "temporal.api.enums.v1.IndexedValueType"
24
+ map :system_attributes, :string, :enum, 2, "temporal.api.enums.v1.IndexedValueType"
25
+ map :storage_schema, :string, :string, 3
26
+ end
27
+ add_message "temporal.api.operatorservice.v1.DeleteNamespaceRequest" do
28
+ optional :namespace, :string, 1
29
+ end
30
+ add_message "temporal.api.operatorservice.v1.DeleteNamespaceResponse" do
31
+ optional :deleted_namespace, :string, 1
32
+ end
33
+ add_message "temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest" do
34
+ optional :frontend_address, :string, 1
35
+ optional :enable_remote_cluster_connection, :bool, 2
36
+ end
37
+ add_message "temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse" do
38
+ end
39
+ add_message "temporal.api.operatorservice.v1.RemoveRemoteClusterRequest" do
40
+ optional :cluster_name, :string, 1
41
+ end
42
+ add_message "temporal.api.operatorservice.v1.RemoveRemoteClusterResponse" do
43
+ end
44
+ add_message "temporal.api.operatorservice.v1.ListClustersRequest" do
45
+ optional :page_size, :int32, 1
46
+ optional :next_page_token, :bytes, 2
47
+ end
48
+ add_message "temporal.api.operatorservice.v1.ListClustersResponse" do
49
+ repeated :clusters, :message, 1, "temporal.api.operatorservice.v1.ClusterMetadata"
50
+ optional :next_page_token, :bytes, 4
51
+ end
52
+ add_message "temporal.api.operatorservice.v1.ClusterMetadata" do
53
+ optional :cluster_name, :string, 1
54
+ optional :cluster_id, :string, 2
55
+ optional :address, :string, 3
56
+ optional :initial_failover_version, :int64, 4
57
+ optional :history_shard_count, :int32, 5
58
+ optional :is_connection_enabled, :bool, 6
59
+ end
60
+ end
61
+ end
62
+
63
+ module Temporalio
64
+ module Api
65
+ module OperatorService
66
+ module V1
67
+ AddSearchAttributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.AddSearchAttributesRequest").msgclass
68
+ AddSearchAttributesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.AddSearchAttributesResponse").msgclass
69
+ RemoveSearchAttributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.RemoveSearchAttributesRequest").msgclass
70
+ RemoveSearchAttributesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.RemoveSearchAttributesResponse").msgclass
71
+ ListSearchAttributesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.ListSearchAttributesRequest").msgclass
72
+ ListSearchAttributesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.ListSearchAttributesResponse").msgclass
73
+ DeleteNamespaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.DeleteNamespaceRequest").msgclass
74
+ DeleteNamespaceResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.DeleteNamespaceResponse").msgclass
75
+ AddOrUpdateRemoteClusterRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterRequest").msgclass
76
+ AddOrUpdateRemoteClusterResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.AddOrUpdateRemoteClusterResponse").msgclass
77
+ RemoveRemoteClusterRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.RemoveRemoteClusterRequest").msgclass
78
+ RemoveRemoteClusterResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.RemoveRemoteClusterResponse").msgclass
79
+ ListClustersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.ListClustersRequest").msgclass
80
+ ListClustersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.ListClustersResponse").msgclass
81
+ ClusterMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.operatorservice.v1.ClusterMetadata").msgclass
82
+ end
83
+ end
84
+ end
85
+ end
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/operatorservice/v1/service.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'temporal/api/operatorservice/v1/request_response_pb'
7
+
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_file("temporal/api/operatorservice/v1/service.proto", :syntax => :proto3) do
10
+ end
11
+ end
12
+
13
+ module Temporalio
14
+ module Api
15
+ module OperatorService
16
+ module V1
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,38 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/query/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'temporal/api/enums/v1/query_pb'
7
+ require 'temporal/api/enums/v1/workflow_pb'
8
+ require 'temporal/api/common/v1/message_pb'
9
+
10
+ Google::Protobuf::DescriptorPool.generated_pool.build do
11
+ add_file("temporal/api/query/v1/message.proto", :syntax => :proto3) do
12
+ add_message "temporal.api.query.v1.WorkflowQuery" do
13
+ optional :query_type, :string, 1
14
+ optional :query_args, :message, 2, "temporal.api.common.v1.Payloads"
15
+ optional :header, :message, 3, "temporal.api.common.v1.Header"
16
+ end
17
+ add_message "temporal.api.query.v1.WorkflowQueryResult" do
18
+ optional :result_type, :enum, 1, "temporal.api.enums.v1.QueryResultType"
19
+ optional :answer, :message, 2, "temporal.api.common.v1.Payloads"
20
+ optional :error_message, :string, 3
21
+ end
22
+ add_message "temporal.api.query.v1.QueryRejected" do
23
+ optional :status, :enum, 1, "temporal.api.enums.v1.WorkflowExecutionStatus"
24
+ end
25
+ end
26
+ end
27
+
28
+ module Temporalio
29
+ module Api
30
+ module Query
31
+ module V1
32
+ WorkflowQuery = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.query.v1.WorkflowQuery").msgclass
33
+ WorkflowQueryResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.query.v1.WorkflowQueryResult").msgclass
34
+ QueryRejected = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.query.v1.QueryRejected").msgclass
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,37 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/replication/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ require 'dependencies/gogoproto/gogo_pb'
8
+ require 'temporal/api/enums/v1/namespace_pb'
9
+
10
+ Google::Protobuf::DescriptorPool.generated_pool.build do
11
+ add_file("temporal/api/replication/v1/message.proto", :syntax => :proto3) do
12
+ add_message "temporal.api.replication.v1.ClusterReplicationConfig" do
13
+ optional :cluster_name, :string, 1
14
+ end
15
+ add_message "temporal.api.replication.v1.NamespaceReplicationConfig" do
16
+ optional :active_cluster_name, :string, 1
17
+ repeated :clusters, :message, 2, "temporal.api.replication.v1.ClusterReplicationConfig"
18
+ optional :state, :enum, 3, "temporal.api.enums.v1.ReplicationState"
19
+ end
20
+ add_message "temporal.api.replication.v1.FailoverStatus" do
21
+ optional :failover_time, :message, 1, "google.protobuf.Timestamp"
22
+ optional :failover_version, :int64, 2
23
+ end
24
+ end
25
+ end
26
+
27
+ module Temporalio
28
+ module Api
29
+ module Replication
30
+ module V1
31
+ ClusterReplicationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.replication.v1.ClusterReplicationConfig").msgclass
32
+ NamespaceReplicationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.replication.v1.NamespaceReplicationConfig").msgclass
33
+ FailoverStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.replication.v1.FailoverStatus").msgclass
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,149 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/schedule/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/duration_pb'
7
+ require 'google/protobuf/timestamp_pb'
8
+ require 'dependencies/gogoproto/gogo_pb'
9
+ require 'temporal/api/common/v1/message_pb'
10
+ require 'temporal/api/enums/v1/schedule_pb'
11
+ require 'temporal/api/workflow/v1/message_pb'
12
+
13
+ Google::Protobuf::DescriptorPool.generated_pool.build do
14
+ add_file("temporal/api/schedule/v1/message.proto", :syntax => :proto3) do
15
+ add_message "temporal.api.schedule.v1.CalendarSpec" do
16
+ optional :second, :string, 1
17
+ optional :minute, :string, 2
18
+ optional :hour, :string, 3
19
+ optional :day_of_month, :string, 4
20
+ optional :month, :string, 5
21
+ optional :year, :string, 6
22
+ optional :day_of_week, :string, 7
23
+ optional :comment, :string, 8
24
+ end
25
+ add_message "temporal.api.schedule.v1.Range" do
26
+ optional :start, :int32, 1
27
+ optional :end, :int32, 2
28
+ optional :step, :int32, 3
29
+ end
30
+ add_message "temporal.api.schedule.v1.StructuredCalendarSpec" do
31
+ repeated :second, :message, 1, "temporal.api.schedule.v1.Range"
32
+ repeated :minute, :message, 2, "temporal.api.schedule.v1.Range"
33
+ repeated :hour, :message, 3, "temporal.api.schedule.v1.Range"
34
+ repeated :day_of_month, :message, 4, "temporal.api.schedule.v1.Range"
35
+ repeated :month, :message, 5, "temporal.api.schedule.v1.Range"
36
+ repeated :year, :message, 6, "temporal.api.schedule.v1.Range"
37
+ repeated :day_of_week, :message, 7, "temporal.api.schedule.v1.Range"
38
+ optional :comment, :string, 8
39
+ end
40
+ add_message "temporal.api.schedule.v1.IntervalSpec" do
41
+ optional :interval, :message, 1, "google.protobuf.Duration"
42
+ optional :phase, :message, 2, "google.protobuf.Duration"
43
+ end
44
+ add_message "temporal.api.schedule.v1.ScheduleSpec" do
45
+ repeated :structured_calendar, :message, 7, "temporal.api.schedule.v1.StructuredCalendarSpec"
46
+ repeated :cron_string, :string, 8
47
+ repeated :calendar, :message, 1, "temporal.api.schedule.v1.CalendarSpec"
48
+ repeated :interval, :message, 2, "temporal.api.schedule.v1.IntervalSpec"
49
+ repeated :exclude_calendar, :message, 3, "temporal.api.schedule.v1.CalendarSpec"
50
+ repeated :exclude_structured_calendar, :message, 9, "temporal.api.schedule.v1.StructuredCalendarSpec"
51
+ optional :start_time, :message, 4, "google.protobuf.Timestamp"
52
+ optional :end_time, :message, 5, "google.protobuf.Timestamp"
53
+ optional :jitter, :message, 6, "google.protobuf.Duration"
54
+ optional :timezone_name, :string, 10
55
+ optional :timezone_data, :bytes, 11
56
+ end
57
+ add_message "temporal.api.schedule.v1.SchedulePolicies" do
58
+ optional :overlap_policy, :enum, 1, "temporal.api.enums.v1.ScheduleOverlapPolicy"
59
+ optional :catchup_window, :message, 2, "google.protobuf.Duration"
60
+ optional :pause_on_failure, :bool, 3
61
+ end
62
+ add_message "temporal.api.schedule.v1.ScheduleAction" do
63
+ oneof :action do
64
+ optional :start_workflow, :message, 1, "temporal.api.workflow.v1.NewWorkflowExecutionInfo"
65
+ end
66
+ end
67
+ add_message "temporal.api.schedule.v1.ScheduleActionResult" do
68
+ optional :schedule_time, :message, 1, "google.protobuf.Timestamp"
69
+ optional :actual_time, :message, 2, "google.protobuf.Timestamp"
70
+ optional :start_workflow_result, :message, 11, "temporal.api.common.v1.WorkflowExecution"
71
+ end
72
+ add_message "temporal.api.schedule.v1.ScheduleState" do
73
+ optional :notes, :string, 1
74
+ optional :paused, :bool, 2
75
+ optional :limited_actions, :bool, 3
76
+ optional :remaining_actions, :int64, 4
77
+ end
78
+ add_message "temporal.api.schedule.v1.TriggerImmediatelyRequest" do
79
+ optional :overlap_policy, :enum, 1, "temporal.api.enums.v1.ScheduleOverlapPolicy"
80
+ end
81
+ add_message "temporal.api.schedule.v1.BackfillRequest" do
82
+ optional :start_time, :message, 1, "google.protobuf.Timestamp"
83
+ optional :end_time, :message, 2, "google.protobuf.Timestamp"
84
+ optional :overlap_policy, :enum, 3, "temporal.api.enums.v1.ScheduleOverlapPolicy"
85
+ end
86
+ add_message "temporal.api.schedule.v1.SchedulePatch" do
87
+ optional :trigger_immediately, :message, 1, "temporal.api.schedule.v1.TriggerImmediatelyRequest"
88
+ repeated :backfill_request, :message, 2, "temporal.api.schedule.v1.BackfillRequest"
89
+ optional :pause, :string, 3
90
+ optional :unpause, :string, 4
91
+ end
92
+ add_message "temporal.api.schedule.v1.ScheduleInfo" do
93
+ optional :action_count, :int64, 1
94
+ optional :missed_catchup_window, :int64, 2
95
+ optional :overlap_skipped, :int64, 3
96
+ repeated :running_workflows, :message, 9, "temporal.api.common.v1.WorkflowExecution"
97
+ repeated :recent_actions, :message, 4, "temporal.api.schedule.v1.ScheduleActionResult"
98
+ repeated :future_action_times, :message, 5, "google.protobuf.Timestamp"
99
+ optional :create_time, :message, 6, "google.protobuf.Timestamp"
100
+ optional :update_time, :message, 7, "google.protobuf.Timestamp"
101
+ optional :invalid_schedule_error, :string, 8
102
+ end
103
+ add_message "temporal.api.schedule.v1.Schedule" do
104
+ optional :spec, :message, 1, "temporal.api.schedule.v1.ScheduleSpec"
105
+ optional :action, :message, 2, "temporal.api.schedule.v1.ScheduleAction"
106
+ optional :policies, :message, 3, "temporal.api.schedule.v1.SchedulePolicies"
107
+ optional :state, :message, 4, "temporal.api.schedule.v1.ScheduleState"
108
+ end
109
+ add_message "temporal.api.schedule.v1.ScheduleListInfo" do
110
+ optional :spec, :message, 1, "temporal.api.schedule.v1.ScheduleSpec"
111
+ optional :workflow_type, :message, 2, "temporal.api.common.v1.WorkflowType"
112
+ optional :notes, :string, 3
113
+ optional :paused, :bool, 4
114
+ repeated :recent_actions, :message, 5, "temporal.api.schedule.v1.ScheduleActionResult"
115
+ repeated :future_action_times, :message, 6, "google.protobuf.Timestamp"
116
+ end
117
+ add_message "temporal.api.schedule.v1.ScheduleListEntry" do
118
+ optional :schedule_id, :string, 1
119
+ optional :memo, :message, 2, "temporal.api.common.v1.Memo"
120
+ optional :search_attributes, :message, 3, "temporal.api.common.v1.SearchAttributes"
121
+ optional :info, :message, 4, "temporal.api.schedule.v1.ScheduleListInfo"
122
+ end
123
+ end
124
+ end
125
+
126
+ module Temporalio
127
+ module Api
128
+ module Schedule
129
+ module V1
130
+ CalendarSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.CalendarSpec").msgclass
131
+ Range = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.Range").msgclass
132
+ StructuredCalendarSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.StructuredCalendarSpec").msgclass
133
+ IntervalSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.IntervalSpec").msgclass
134
+ ScheduleSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleSpec").msgclass
135
+ SchedulePolicies = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.SchedulePolicies").msgclass
136
+ ScheduleAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleAction").msgclass
137
+ ScheduleActionResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleActionResult").msgclass
138
+ ScheduleState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleState").msgclass
139
+ TriggerImmediatelyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.TriggerImmediatelyRequest").msgclass
140
+ BackfillRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.BackfillRequest").msgclass
141
+ SchedulePatch = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.SchedulePatch").msgclass
142
+ ScheduleInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleInfo").msgclass
143
+ Schedule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.Schedule").msgclass
144
+ ScheduleListInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleListInfo").msgclass
145
+ ScheduleListEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.schedule.v1.ScheduleListEntry").msgclass
146
+ end
147
+ end
148
+ end
149
+ end
@@ -0,0 +1,73 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/taskqueue/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/duration_pb'
7
+ require 'google/protobuf/timestamp_pb'
8
+ require 'google/protobuf/wrappers_pb'
9
+ require 'dependencies/gogoproto/gogo_pb'
10
+ require 'temporal/api/enums/v1/task_queue_pb'
11
+
12
+ Google::Protobuf::DescriptorPool.generated_pool.build do
13
+ add_file("temporal/api/taskqueue/v1/message.proto", :syntax => :proto3) do
14
+ add_message "temporal.api.taskqueue.v1.TaskQueue" do
15
+ optional :name, :string, 1
16
+ optional :kind, :enum, 2, "temporal.api.enums.v1.TaskQueueKind"
17
+ end
18
+ add_message "temporal.api.taskqueue.v1.TaskQueueMetadata" do
19
+ optional :max_tasks_per_second, :message, 1, "google.protobuf.DoubleValue"
20
+ end
21
+ add_message "temporal.api.taskqueue.v1.TaskQueueStatus" do
22
+ optional :backlog_count_hint, :int64, 1
23
+ optional :read_level, :int64, 2
24
+ optional :ack_level, :int64, 3
25
+ optional :rate_per_second, :double, 4
26
+ optional :task_id_block, :message, 5, "temporal.api.taskqueue.v1.TaskIdBlock"
27
+ end
28
+ add_message "temporal.api.taskqueue.v1.TaskIdBlock" do
29
+ optional :start_id, :int64, 1
30
+ optional :end_id, :int64, 2
31
+ end
32
+ add_message "temporal.api.taskqueue.v1.TaskQueuePartitionMetadata" do
33
+ optional :key, :string, 1
34
+ optional :owner_host_name, :string, 2
35
+ end
36
+ add_message "temporal.api.taskqueue.v1.PollerInfo" do
37
+ optional :last_access_time, :message, 1, "google.protobuf.Timestamp"
38
+ optional :identity, :string, 2
39
+ optional :rate_per_second, :double, 3
40
+ optional :worker_versioning_id, :message, 4, "temporal.api.taskqueue.v1.VersionId"
41
+ end
42
+ add_message "temporal.api.taskqueue.v1.StickyExecutionAttributes" do
43
+ optional :worker_task_queue, :message, 1, "temporal.api.taskqueue.v1.TaskQueue"
44
+ optional :schedule_to_start_timeout, :message, 2, "google.protobuf.Duration"
45
+ end
46
+ add_message "temporal.api.taskqueue.v1.VersionIdNode" do
47
+ optional :version, :message, 1, "temporal.api.taskqueue.v1.VersionId"
48
+ optional :previous_compatible, :message, 2, "temporal.api.taskqueue.v1.VersionIdNode"
49
+ optional :previous_incompatible, :message, 3, "temporal.api.taskqueue.v1.VersionIdNode"
50
+ end
51
+ add_message "temporal.api.taskqueue.v1.VersionId" do
52
+ optional :worker_build_id, :string, 1
53
+ end
54
+ end
55
+ end
56
+
57
+ module Temporalio
58
+ module Api
59
+ module TaskQueue
60
+ module V1
61
+ TaskQueue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.TaskQueue").msgclass
62
+ TaskQueueMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.TaskQueueMetadata").msgclass
63
+ TaskQueueStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.TaskQueueStatus").msgclass
64
+ TaskIdBlock = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.TaskIdBlock").msgclass
65
+ TaskQueuePartitionMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.TaskQueuePartitionMetadata").msgclass
66
+ PollerInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.PollerInfo").msgclass
67
+ StickyExecutionAttributes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.StickyExecutionAttributes").msgclass
68
+ VersionIdNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.VersionIdNode").msgclass
69
+ VersionId = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.taskqueue.v1.VersionId").msgclass
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,41 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/version/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ require 'dependencies/gogoproto/gogo_pb'
8
+ require 'temporal/api/enums/v1/common_pb'
9
+
10
+ Google::Protobuf::DescriptorPool.generated_pool.build do
11
+ add_file("temporal/api/version/v1/message.proto", :syntax => :proto3) do
12
+ add_message "temporal.api.version.v1.ReleaseInfo" do
13
+ optional :version, :string, 1
14
+ optional :release_time, :message, 2, "google.protobuf.Timestamp"
15
+ optional :notes, :string, 3
16
+ end
17
+ add_message "temporal.api.version.v1.Alert" do
18
+ optional :message, :string, 1
19
+ optional :severity, :enum, 2, "temporal.api.enums.v1.Severity"
20
+ end
21
+ add_message "temporal.api.version.v1.VersionInfo" do
22
+ optional :current, :message, 1, "temporal.api.version.v1.ReleaseInfo"
23
+ optional :recommended, :message, 2, "temporal.api.version.v1.ReleaseInfo"
24
+ optional :instructions, :string, 3
25
+ repeated :alerts, :message, 4, "temporal.api.version.v1.Alert"
26
+ optional :last_update_time, :message, 5, "google.protobuf.Timestamp"
27
+ end
28
+ end
29
+ end
30
+
31
+ module Temporalio
32
+ module Api
33
+ module Version
34
+ module V1
35
+ ReleaseInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.version.v1.ReleaseInfo").msgclass
36
+ Alert = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.version.v1.Alert").msgclass
37
+ VersionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.version.v1.VersionInfo").msgclass
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,111 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: temporal/api/workflow/v1/message.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/duration_pb'
7
+ require 'google/protobuf/timestamp_pb'
8
+ require 'dependencies/gogoproto/gogo_pb'
9
+ require 'temporal/api/enums/v1/workflow_pb'
10
+ require 'temporal/api/common/v1/message_pb'
11
+ require 'temporal/api/failure/v1/message_pb'
12
+ require 'temporal/api/taskqueue/v1/message_pb'
13
+
14
+ Google::Protobuf::DescriptorPool.generated_pool.build do
15
+ add_file("temporal/api/workflow/v1/message.proto", :syntax => :proto3) do
16
+ add_message "temporal.api.workflow.v1.WorkflowExecutionInfo" do
17
+ optional :execution, :message, 1, "temporal.api.common.v1.WorkflowExecution"
18
+ optional :type, :message, 2, "temporal.api.common.v1.WorkflowType"
19
+ optional :start_time, :message, 3, "google.protobuf.Timestamp"
20
+ optional :close_time, :message, 4, "google.protobuf.Timestamp"
21
+ optional :status, :enum, 5, "temporal.api.enums.v1.WorkflowExecutionStatus"
22
+ optional :history_length, :int64, 6
23
+ optional :parent_namespace_id, :string, 7
24
+ optional :parent_execution, :message, 8, "temporal.api.common.v1.WorkflowExecution"
25
+ optional :execution_time, :message, 9, "google.protobuf.Timestamp"
26
+ optional :memo, :message, 10, "temporal.api.common.v1.Memo"
27
+ optional :search_attributes, :message, 11, "temporal.api.common.v1.SearchAttributes"
28
+ optional :auto_reset_points, :message, 12, "temporal.api.workflow.v1.ResetPoints"
29
+ optional :task_queue, :string, 13
30
+ optional :state_transition_count, :int64, 14
31
+ optional :history_size_bytes, :int64, 15
32
+ end
33
+ add_message "temporal.api.workflow.v1.WorkflowExecutionConfig" do
34
+ optional :task_queue, :message, 1, "temporal.api.taskqueue.v1.TaskQueue"
35
+ optional :workflow_execution_timeout, :message, 2, "google.protobuf.Duration"
36
+ optional :workflow_run_timeout, :message, 3, "google.protobuf.Duration"
37
+ optional :default_workflow_task_timeout, :message, 4, "google.protobuf.Duration"
38
+ end
39
+ add_message "temporal.api.workflow.v1.PendingActivityInfo" do
40
+ optional :activity_id, :string, 1
41
+ optional :activity_type, :message, 2, "temporal.api.common.v1.ActivityType"
42
+ optional :state, :enum, 3, "temporal.api.enums.v1.PendingActivityState"
43
+ optional :heartbeat_details, :message, 4, "temporal.api.common.v1.Payloads"
44
+ optional :last_heartbeat_time, :message, 5, "google.protobuf.Timestamp"
45
+ optional :last_started_time, :message, 6, "google.protobuf.Timestamp"
46
+ optional :attempt, :int32, 7
47
+ optional :maximum_attempts, :int32, 8
48
+ optional :scheduled_time, :message, 9, "google.protobuf.Timestamp"
49
+ optional :expiration_time, :message, 10, "google.protobuf.Timestamp"
50
+ optional :last_failure, :message, 11, "temporal.api.failure.v1.Failure"
51
+ optional :last_worker_identity, :string, 12
52
+ end
53
+ add_message "temporal.api.workflow.v1.PendingChildExecutionInfo" do
54
+ optional :workflow_id, :string, 1
55
+ optional :run_id, :string, 2
56
+ optional :workflow_type_name, :string, 3
57
+ optional :initiated_id, :int64, 4
58
+ optional :parent_close_policy, :enum, 5, "temporal.api.enums.v1.ParentClosePolicy"
59
+ end
60
+ add_message "temporal.api.workflow.v1.PendingWorkflowTaskInfo" do
61
+ optional :state, :enum, 1, "temporal.api.enums.v1.PendingWorkflowTaskState"
62
+ optional :scheduled_time, :message, 2, "google.protobuf.Timestamp"
63
+ optional :original_scheduled_time, :message, 3, "google.protobuf.Timestamp"
64
+ optional :started_time, :message, 4, "google.protobuf.Timestamp"
65
+ optional :attempt, :int32, 5
66
+ end
67
+ add_message "temporal.api.workflow.v1.ResetPoints" do
68
+ repeated :points, :message, 1, "temporal.api.workflow.v1.ResetPointInfo"
69
+ end
70
+ add_message "temporal.api.workflow.v1.ResetPointInfo" do
71
+ optional :binary_checksum, :string, 1
72
+ optional :run_id, :string, 2
73
+ optional :first_workflow_task_completed_id, :int64, 3
74
+ optional :create_time, :message, 4, "google.protobuf.Timestamp"
75
+ optional :expire_time, :message, 5, "google.protobuf.Timestamp"
76
+ optional :resettable, :bool, 6
77
+ end
78
+ add_message "temporal.api.workflow.v1.NewWorkflowExecutionInfo" do
79
+ optional :workflow_id, :string, 1
80
+ optional :workflow_type, :message, 2, "temporal.api.common.v1.WorkflowType"
81
+ optional :task_queue, :message, 3, "temporal.api.taskqueue.v1.TaskQueue"
82
+ optional :input, :message, 4, "temporal.api.common.v1.Payloads"
83
+ optional :workflow_execution_timeout, :message, 5, "google.protobuf.Duration"
84
+ optional :workflow_run_timeout, :message, 6, "google.protobuf.Duration"
85
+ optional :workflow_task_timeout, :message, 7, "google.protobuf.Duration"
86
+ optional :workflow_id_reuse_policy, :enum, 8, "temporal.api.enums.v1.WorkflowIdReusePolicy"
87
+ optional :retry_policy, :message, 9, "temporal.api.common.v1.RetryPolicy"
88
+ optional :cron_schedule, :string, 10
89
+ optional :memo, :message, 11, "temporal.api.common.v1.Memo"
90
+ optional :search_attributes, :message, 12, "temporal.api.common.v1.SearchAttributes"
91
+ optional :header, :message, 13, "temporal.api.common.v1.Header"
92
+ end
93
+ end
94
+ end
95
+
96
+ module Temporalio
97
+ module Api
98
+ module Workflow
99
+ module V1
100
+ WorkflowExecutionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.WorkflowExecutionInfo").msgclass
101
+ WorkflowExecutionConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.WorkflowExecutionConfig").msgclass
102
+ PendingActivityInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.PendingActivityInfo").msgclass
103
+ PendingChildExecutionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.PendingChildExecutionInfo").msgclass
104
+ PendingWorkflowTaskInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.PendingWorkflowTaskInfo").msgclass
105
+ ResetPoints = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.ResetPoints").msgclass
106
+ ResetPointInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.ResetPointInfo").msgclass
107
+ NewWorkflowExecutionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.workflow.v1.NewWorkflowExecutionInfo").msgclass
108
+ end
109
+ end
110
+ end
111
+ end