rappel 0.5.5__py3-none-manylinux_2_39_aarch64.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.
Potentially problematic release.
This version of rappel might be problematic. Click here for more details.
- proto/ast_pb2.py +115 -0
- proto/ast_pb2.pyi +1522 -0
- proto/ast_pb2_grpc.py +24 -0
- proto/ast_pb2_grpc.pyi +22 -0
- proto/messages_pb2.py +106 -0
- proto/messages_pb2.pyi +1217 -0
- proto/messages_pb2_grpc.py +406 -0
- proto/messages_pb2_grpc.pyi +380 -0
- rappel/__init__.py +56 -0
- rappel/actions.py +108 -0
- rappel/bin/boot-rappel-singleton +0 -0
- rappel/bin/rappel-bridge +0 -0
- rappel/bin/start-workers +0 -0
- rappel/bridge.py +228 -0
- rappel/dependencies.py +149 -0
- rappel/exceptions.py +11 -0
- rappel/formatter.py +110 -0
- rappel/ir_builder.py +3168 -0
- rappel/logger.py +39 -0
- rappel/registry.py +106 -0
- rappel/schedule.py +357 -0
- rappel/serialization.py +253 -0
- rappel/worker.py +191 -0
- rappel/workflow.py +240 -0
- rappel/workflow_runtime.py +287 -0
- rappel-0.5.5.data/scripts/boot-rappel-singleton +0 -0
- rappel-0.5.5.data/scripts/rappel-bridge +0 -0
- rappel-0.5.5.data/scripts/start-workers +0 -0
- rappel-0.5.5.dist-info/METADATA +299 -0
- rappel-0.5.5.dist-info/RECORD +32 -0
- rappel-0.5.5.dist-info/WHEEL +4 -0
- rappel-0.5.5.dist-info/entry_points.txt +2 -0
proto/ast_pb2_grpc.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
|
|
4
|
+
import grpc
|
|
5
|
+
|
|
6
|
+
GRPC_GENERATED_VERSION = "1.71.2"
|
|
7
|
+
GRPC_VERSION = grpc.__version__
|
|
8
|
+
_version_not_supported = False
|
|
9
|
+
|
|
10
|
+
try:
|
|
11
|
+
from grpc._utilities import first_version_is_lower
|
|
12
|
+
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f"The grpc package installed is at version {GRPC_VERSION},"
|
|
20
|
+
+ " but the generated code in ast_pb2_grpc.py depends on"
|
|
21
|
+
+ f" grpcio>={GRPC_GENERATED_VERSION}."
|
|
22
|
+
+ f" Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}"
|
|
23
|
+
+ f" or downgrade your generated code using grpcio-tools<={GRPC_VERSION}."
|
|
24
|
+
)
|
proto/ast_pb2_grpc.pyi
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import abc
|
|
7
|
+
import collections.abc
|
|
8
|
+
import typing
|
|
9
|
+
|
|
10
|
+
import grpc
|
|
11
|
+
import grpc.aio
|
|
12
|
+
|
|
13
|
+
_T = typing.TypeVar("_T")
|
|
14
|
+
|
|
15
|
+
class _MaybeAsyncIterator(
|
|
16
|
+
collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta
|
|
17
|
+
): ...
|
|
18
|
+
class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore[misc, type-arg]
|
|
19
|
+
...
|
|
20
|
+
|
|
21
|
+
GRPC_GENERATED_VERSION: str
|
|
22
|
+
GRPC_VERSION: str
|
proto/messages_pb2.py
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: messages.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
|
|
13
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
14
|
+
_runtime_version.Domain.PUBLIC,
|
|
15
|
+
5,
|
|
16
|
+
29,
|
|
17
|
+
0,
|
|
18
|
+
'',
|
|
19
|
+
'messages.proto'
|
|
20
|
+
)
|
|
21
|
+
# @@protoc_insertion_point(imports)
|
|
22
|
+
|
|
23
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
24
|
+
|
|
25
|
+
_sym_db = _symbol_database.Default()
|
|
26
|
+
_sym_db.RegisterFileDescriptor(google_dot_protobuf_dot_struct__pb2.DESCRIPTOR)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0emessages.proto\x12\x0frappel.messages\x1a\x1cgoogle/protobuf/struct.proto\"r\n\x08\x45nvelope\x12\x13\n\x0b\x64\x65livery_id\x18\x01 \x01(\x04\x12\x14\n\x0cpartition_id\x18\x02 \x01(\r\x12*\n\x04kind\x18\x03 \x01(\x0e\x32\x1c.rappel.messages.MessageKind\x12\x0f\n\x07payload\x18\x04 \x01(\x0c\"\xe4\x02\n\x0e\x41\x63tionDispatch\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x13\n\x0binstance_id\x18\x02 \x01(\t\x12\x10\n\x08sequence\x18\x03 \x01(\r\x12\x13\n\x0b\x61\x63tion_name\x18\x04 \x01(\t\x12\x13\n\x0bmodule_name\x18\x05 \x01(\t\x12\x32\n\x06kwargs\x18\x06 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x1c\n\x0ftimeout_seconds\x18\x07 \x01(\rH\x00\x88\x01\x01\x12\x18\n\x0bmax_retries\x18\x08 \x01(\rH\x01\x88\x01\x01\x12\x1b\n\x0e\x61ttempt_number\x18\t \x01(\rH\x02\x88\x01\x01\x12\x1b\n\x0e\x64ispatch_token\x18\n \x01(\tH\x03\x88\x01\x01\x42\x12\n\x10_timeout_secondsB\x0e\n\x0c_max_retriesB\x11\n\x0f_attempt_numberB\x11\n\x0f_dispatch_token\"\x9d\x02\n\x0c\x41\x63tionResult\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x33\n\x07payload\x18\x03 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x17\n\x0fworker_start_ns\x18\x04 \x01(\x04\x12\x15\n\rworker_end_ns\x18\x05 \x01(\x04\x12\x1b\n\x0e\x64ispatch_token\x18\x06 \x01(\tH\x00\x88\x01\x01\x12\x17\n\nerror_type\x18\x07 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\rerror_message\x18\x08 \x01(\tH\x02\x88\x01\x01\x42\x11\n\x0f_dispatch_tokenB\r\n\x0b_error_typeB\x10\n\x0e_error_message\" \n\x03\x41\x63k\x12\x19\n\x11\x61\x63ked_delivery_id\x18\x01 \x01(\x04\" \n\x0bWorkerHello\x12\x11\n\tworker_id\x18\x01 \x01(\x04\"\x94\x03\n\x15WorkflowArgumentValue\x12?\n\tprimitive\x18\x01 \x01(\x0b\x32*.rappel.messages.PrimitiveWorkflowArgumentH\x00\x12?\n\tbasemodel\x18\x02 \x01(\x0b\x32*.rappel.messages.BaseModelWorkflowArgumentH\x00\x12\x38\n\texception\x18\x03 \x01(\x0b\x32#.rappel.messages.WorkflowErrorValueH\x00\x12;\n\nlist_value\x18\x04 \x01(\x0b\x32%.rappel.messages.WorkflowListArgumentH\x00\x12=\n\x0btuple_value\x18\x05 \x01(\x0b\x32&.rappel.messages.WorkflowTupleArgumentH\x00\x12;\n\ndict_value\x18\x06 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgumentH\x00\x42\x06\n\x04kind\"V\n\x10WorkflowArgument\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"I\n\x11WorkflowArguments\x12\x34\n\targuments\x18\x01 \x03(\x0b\x32!.rappel.messages.WorkflowArgument\"\xb0\x01\n\x19PrimitiveWorkflowArgument\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x16\n\x0c\x64ouble_value\x18\x02 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x03 \x01(\x12H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x30\n\nnull_value\x18\x05 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x42\x06\n\x04kind\"n\n\x19\x42\x61seModelWorkflowArgument\x12\x0e\n\x06module\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x33\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgument\"V\n\x12WorkflowErrorValue\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0e\n\x06module\x18\x02 \x01(\t\x12\x0f\n\x07message\x18\x03 \x01(\t\x12\x11\n\ttraceback\x18\x04 \x01(\t\"M\n\x14WorkflowListArgument\x12\x35\n\x05items\x18\x01 \x03(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"N\n\x15WorkflowTupleArgument\x12\x35\n\x05items\x18\x01 \x03(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"J\n\x14WorkflowDictArgument\x12\x32\n\x07\x65ntries\x18\x01 \x03(\x0b\x32!.rappel.messages.WorkflowArgument\"\x9b\x01\n\x14WorkflowRegistration\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\n\n\x02ir\x18\x02 \x01(\x0c\x12\x0f\n\x07ir_hash\x18\x03 \x01(\t\x12;\n\x0finitial_context\x18\x04 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x12\n\nconcurrent\x18\x05 \x01(\x08\"V\n\x17RegisterWorkflowRequest\x12;\n\x0cregistration\x18\x01 \x01(\x0b\x32%.rappel.messages.WorkflowRegistration\"U\n\x18RegisterWorkflowResponse\x12\x1b\n\x13workflow_version_id\x18\x01 \x01(\t\x12\x1c\n\x14workflow_instance_id\x18\x02 \x01(\t\"I\n\x16WaitForInstanceRequest\x12\x13\n\x0binstance_id\x18\x01 \x01(\t\x12\x1a\n\x12poll_interval_secs\x18\x02 \x01(\x01\"*\n\x17WaitForInstanceResponse\x12\x0f\n\x07payload\x18\x01 \x01(\x0c\"\x8c\x01\n\x12ScheduleDefinition\x12+\n\x04type\x18\x01 \x01(\x0e\x32\x1d.rappel.messages.ScheduleType\x12\x17\n\x0f\x63ron_expression\x18\x02 \x01(\t\x12\x18\n\x10interval_seconds\x18\x03 \x01(\x03\x12\x16\n\x0ejitter_seconds\x18\x04 \x01(\x03\"\xef\x01\n\x17RegisterScheduleRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\x35\n\x08schedule\x18\x02 \x01(\x0b\x32#.rappel.messages.ScheduleDefinition\x12\x32\n\x06inputs\x18\x03 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12;\n\x0cregistration\x18\x04 \x01(\x0b\x32%.rappel.messages.WorkflowRegistration\x12\x15\n\rschedule_name\x18\x05 \x01(\t\"D\n\x18RegisterScheduleResponse\x12\x13\n\x0bschedule_id\x18\x01 \x01(\t\x12\x13\n\x0bnext_run_at\x18\x02 \x01(\t\"|\n\x1bUpdateScheduleStatusRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12/\n\x06status\x18\x02 \x01(\x0e\x32\x1f.rappel.messages.ScheduleStatus\x12\x15\n\rschedule_name\x18\x03 \x01(\t\"/\n\x1cUpdateScheduleStatusResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"E\n\x15\x44\x65leteScheduleRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\x15\n\rschedule_name\x18\x02 \x01(\t\")\n\x16\x44\x65leteScheduleResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"D\n\x14ListSchedulesRequest\x12\x1a\n\rstatus_filter\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_status_filter\"\xe6\x02\n\x0cScheduleInfo\x12\n\n\x02id\x18\x01 \x01(\t\x12\x15\n\rworkflow_name\x18\x02 \x01(\t\x12\x34\n\rschedule_type\x18\x03 \x01(\x0e\x32\x1d.rappel.messages.ScheduleType\x12\x17\n\x0f\x63ron_expression\x18\x04 \x01(\t\x12\x18\n\x10interval_seconds\x18\x05 \x01(\x03\x12/\n\x06status\x18\x06 \x01(\x0e\x32\x1f.rappel.messages.ScheduleStatus\x12\x13\n\x0bnext_run_at\x18\x07 \x01(\t\x12\x13\n\x0blast_run_at\x18\x08 \x01(\t\x12\x18\n\x10last_instance_id\x18\t \x01(\t\x12\x12\n\ncreated_at\x18\n \x01(\t\x12\x12\n\nupdated_at\x18\x0b \x01(\t\x12\x15\n\rschedule_name\x18\x0c \x01(\t\x12\x16\n\x0ejitter_seconds\x18\r \x01(\x03\"I\n\x15ListSchedulesResponse\x12\x30\n\tschedules\x18\x01 \x03(\x0b\x32\x1d.rappel.messages.ScheduleInfo*\xbe\x01\n\x0bMessageKind\x12\x1c\n\x18MESSAGE_KIND_UNSPECIFIED\x10\x00\x12 \n\x1cMESSAGE_KIND_ACTION_DISPATCH\x10\x01\x12\x1e\n\x1aMESSAGE_KIND_ACTION_RESULT\x10\x02\x12\x14\n\x10MESSAGE_KIND_ACK\x10\x03\x12\x1a\n\x16MESSAGE_KIND_HEARTBEAT\x10\x04\x12\x1d\n\x19MESSAGE_KIND_WORKER_HELLO\x10\x05*a\n\x0cScheduleType\x12\x1d\n\x19SCHEDULE_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12SCHEDULE_TYPE_CRON\x10\x01\x12\x1a\n\x16SCHEDULE_TYPE_INTERVAL\x10\x02*i\n\x0eScheduleStatus\x12\x1f\n\x1bSCHEDULE_STATUS_UNSPECIFIED\x10\x00\x12\x1a\n\x16SCHEDULE_STATUS_ACTIVE\x10\x01\x12\x1a\n\x16SCHEDULE_STATUS_PAUSED\x10\x02\x32R\n\x0cWorkerBridge\x12\x42\n\x06\x41ttach\x12\x19.rappel.messages.Envelope\x1a\x19.rappel.messages.Envelope(\x01\x30\x01\x32\x81\x05\n\x0fWorkflowService\x12g\n\x10RegisterWorkflow\x12(.rappel.messages.RegisterWorkflowRequest\x1a).rappel.messages.RegisterWorkflowResponse\x12\x64\n\x0fWaitForInstance\x12\'.rappel.messages.WaitForInstanceRequest\x1a(.rappel.messages.WaitForInstanceResponse\x12g\n\x10RegisterSchedule\x12(.rappel.messages.RegisterScheduleRequest\x1a).rappel.messages.RegisterScheduleResponse\x12s\n\x14UpdateScheduleStatus\x12,.rappel.messages.UpdateScheduleStatusRequest\x1a-.rappel.messages.UpdateScheduleStatusResponse\x12\x61\n\x0e\x44\x65leteSchedule\x12&.rappel.messages.DeleteScheduleRequest\x1a\'.rappel.messages.DeleteScheduleResponse\x12^\n\rListSchedules\x12%.rappel.messages.ListSchedulesRequest\x1a&.rappel.messages.ListSchedulesResponseb\x06proto3')
|
|
32
|
+
|
|
33
|
+
_globals = globals()
|
|
34
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'messages_pb2', _globals)
|
|
36
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
37
|
+
DESCRIPTOR._loaded_options = None
|
|
38
|
+
_globals['_MESSAGEKIND']._serialized_start=3783
|
|
39
|
+
_globals['_MESSAGEKIND']._serialized_end=3973
|
|
40
|
+
_globals['_SCHEDULETYPE']._serialized_start=3975
|
|
41
|
+
_globals['_SCHEDULETYPE']._serialized_end=4072
|
|
42
|
+
_globals['_SCHEDULESTATUS']._serialized_start=4074
|
|
43
|
+
_globals['_SCHEDULESTATUS']._serialized_end=4179
|
|
44
|
+
_globals['_ENVELOPE']._serialized_start=65
|
|
45
|
+
_globals['_ENVELOPE']._serialized_end=179
|
|
46
|
+
_globals['_ACTIONDISPATCH']._serialized_start=182
|
|
47
|
+
_globals['_ACTIONDISPATCH']._serialized_end=538
|
|
48
|
+
_globals['_ACTIONRESULT']._serialized_start=541
|
|
49
|
+
_globals['_ACTIONRESULT']._serialized_end=826
|
|
50
|
+
_globals['_ACK']._serialized_start=828
|
|
51
|
+
_globals['_ACK']._serialized_end=860
|
|
52
|
+
_globals['_WORKERHELLO']._serialized_start=862
|
|
53
|
+
_globals['_WORKERHELLO']._serialized_end=894
|
|
54
|
+
_globals['_WORKFLOWARGUMENTVALUE']._serialized_start=897
|
|
55
|
+
_globals['_WORKFLOWARGUMENTVALUE']._serialized_end=1301
|
|
56
|
+
_globals['_WORKFLOWARGUMENT']._serialized_start=1303
|
|
57
|
+
_globals['_WORKFLOWARGUMENT']._serialized_end=1389
|
|
58
|
+
_globals['_WORKFLOWARGUMENTS']._serialized_start=1391
|
|
59
|
+
_globals['_WORKFLOWARGUMENTS']._serialized_end=1464
|
|
60
|
+
_globals['_PRIMITIVEWORKFLOWARGUMENT']._serialized_start=1467
|
|
61
|
+
_globals['_PRIMITIVEWORKFLOWARGUMENT']._serialized_end=1643
|
|
62
|
+
_globals['_BASEMODELWORKFLOWARGUMENT']._serialized_start=1645
|
|
63
|
+
_globals['_BASEMODELWORKFLOWARGUMENT']._serialized_end=1755
|
|
64
|
+
_globals['_WORKFLOWERRORVALUE']._serialized_start=1757
|
|
65
|
+
_globals['_WORKFLOWERRORVALUE']._serialized_end=1843
|
|
66
|
+
_globals['_WORKFLOWLISTARGUMENT']._serialized_start=1845
|
|
67
|
+
_globals['_WORKFLOWLISTARGUMENT']._serialized_end=1922
|
|
68
|
+
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_start=1924
|
|
69
|
+
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_end=2002
|
|
70
|
+
_globals['_WORKFLOWDICTARGUMENT']._serialized_start=2004
|
|
71
|
+
_globals['_WORKFLOWDICTARGUMENT']._serialized_end=2078
|
|
72
|
+
_globals['_WORKFLOWREGISTRATION']._serialized_start=2081
|
|
73
|
+
_globals['_WORKFLOWREGISTRATION']._serialized_end=2236
|
|
74
|
+
_globals['_REGISTERWORKFLOWREQUEST']._serialized_start=2238
|
|
75
|
+
_globals['_REGISTERWORKFLOWREQUEST']._serialized_end=2324
|
|
76
|
+
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_start=2326
|
|
77
|
+
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_end=2411
|
|
78
|
+
_globals['_WAITFORINSTANCEREQUEST']._serialized_start=2413
|
|
79
|
+
_globals['_WAITFORINSTANCEREQUEST']._serialized_end=2486
|
|
80
|
+
_globals['_WAITFORINSTANCERESPONSE']._serialized_start=2488
|
|
81
|
+
_globals['_WAITFORINSTANCERESPONSE']._serialized_end=2530
|
|
82
|
+
_globals['_SCHEDULEDEFINITION']._serialized_start=2533
|
|
83
|
+
_globals['_SCHEDULEDEFINITION']._serialized_end=2673
|
|
84
|
+
_globals['_REGISTERSCHEDULEREQUEST']._serialized_start=2676
|
|
85
|
+
_globals['_REGISTERSCHEDULEREQUEST']._serialized_end=2915
|
|
86
|
+
_globals['_REGISTERSCHEDULERESPONSE']._serialized_start=2917
|
|
87
|
+
_globals['_REGISTERSCHEDULERESPONSE']._serialized_end=2985
|
|
88
|
+
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_start=2987
|
|
89
|
+
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_end=3111
|
|
90
|
+
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_start=3113
|
|
91
|
+
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_end=3160
|
|
92
|
+
_globals['_DELETESCHEDULEREQUEST']._serialized_start=3162
|
|
93
|
+
_globals['_DELETESCHEDULEREQUEST']._serialized_end=3231
|
|
94
|
+
_globals['_DELETESCHEDULERESPONSE']._serialized_start=3233
|
|
95
|
+
_globals['_DELETESCHEDULERESPONSE']._serialized_end=3274
|
|
96
|
+
_globals['_LISTSCHEDULESREQUEST']._serialized_start=3276
|
|
97
|
+
_globals['_LISTSCHEDULESREQUEST']._serialized_end=3344
|
|
98
|
+
_globals['_SCHEDULEINFO']._serialized_start=3347
|
|
99
|
+
_globals['_SCHEDULEINFO']._serialized_end=3705
|
|
100
|
+
_globals['_LISTSCHEDULESRESPONSE']._serialized_start=3707
|
|
101
|
+
_globals['_LISTSCHEDULESRESPONSE']._serialized_end=3780
|
|
102
|
+
_globals['_WORKERBRIDGE']._serialized_start=4181
|
|
103
|
+
_globals['_WORKERBRIDGE']._serialized_end=4263
|
|
104
|
+
_globals['_WORKFLOWSERVICE']._serialized_start=4266
|
|
105
|
+
_globals['_WORKFLOWSERVICE']._serialized_end=4907
|
|
106
|
+
# @@protoc_insertion_point(module_scope)
|