orionis 0.729.0__py3-none-any.whl → 0.730.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.
- orionis/console/stubs/listener.stub +9 -9
- orionis/metadata/framework.py +1 -1
- {orionis-0.729.0.dist-info → orionis-0.730.0.dist-info}/METADATA +1 -1
- {orionis-0.729.0.dist-info → orionis-0.730.0.dist-info}/RECORD +7 -7
- {orionis-0.729.0.dist-info → orionis-0.730.0.dist-info}/WHEEL +0 -0
- {orionis-0.729.0.dist-info → orionis-0.730.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.729.0.dist-info → orionis-0.730.0.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@ from orionis.console.base.scheduler_event_listener import BaseScheduleEventListe
|
|
|
2
2
|
from orionis.console.contracts.schedule import ISchedule
|
|
3
3
|
from orionis.console.entities.event_job import EventJob
|
|
4
4
|
|
|
5
|
-
class
|
|
5
|
+
class {{class_name}}(BaseScheduleEventListener):
|
|
6
6
|
|
|
7
7
|
async def before(self, event: EventJob, schedule: ISchedule):
|
|
8
8
|
"""
|
|
@@ -20,7 +20,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
20
20
|
None
|
|
21
21
|
This method does not return any value.
|
|
22
22
|
"""
|
|
23
|
-
|
|
23
|
+
pass
|
|
24
24
|
|
|
25
25
|
async def after(self, event: EventJob, schedule: ISchedule):
|
|
26
26
|
"""
|
|
@@ -38,7 +38,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
38
38
|
None
|
|
39
39
|
This method does not return any value.
|
|
40
40
|
"""
|
|
41
|
-
|
|
41
|
+
pass
|
|
42
42
|
|
|
43
43
|
async def onFailure(self, event: EventJob, schedule: ISchedule):
|
|
44
44
|
"""
|
|
@@ -56,7 +56,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
56
56
|
None
|
|
57
57
|
This method does not return any value.
|
|
58
58
|
"""
|
|
59
|
-
|
|
59
|
+
pass
|
|
60
60
|
|
|
61
61
|
async def onMissed(self, event: EventJob, schedule: ISchedule):
|
|
62
62
|
"""
|
|
@@ -74,7 +74,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
74
74
|
None
|
|
75
75
|
This method does not return any value.
|
|
76
76
|
"""
|
|
77
|
-
|
|
77
|
+
pass
|
|
78
78
|
|
|
79
79
|
async def onMaxInstances(self, event: EventJob, schedule: ISchedule):
|
|
80
80
|
"""
|
|
@@ -92,7 +92,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
92
92
|
None
|
|
93
93
|
This method does not return any value.
|
|
94
94
|
"""
|
|
95
|
-
|
|
95
|
+
pass
|
|
96
96
|
|
|
97
97
|
async def onPaused(self, event: EventJob, schedule: ISchedule):
|
|
98
98
|
"""
|
|
@@ -110,7 +110,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
110
110
|
None
|
|
111
111
|
This method does not return any value.
|
|
112
112
|
"""
|
|
113
|
-
|
|
113
|
+
pass
|
|
114
114
|
|
|
115
115
|
async def onResumed(self, event: EventJob, schedule: ISchedule):
|
|
116
116
|
"""
|
|
@@ -128,7 +128,7 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
128
128
|
None
|
|
129
129
|
This method does not return any value.
|
|
130
130
|
"""
|
|
131
|
-
|
|
131
|
+
pass
|
|
132
132
|
|
|
133
133
|
async def onRemoved(self, event: EventJob, schedule: ISchedule):
|
|
134
134
|
"""
|
|
@@ -146,4 +146,4 @@ class InspireListener(BaseScheduleEventListener):
|
|
|
146
146
|
None
|
|
147
147
|
This method does not return any value.
|
|
148
148
|
"""
|
|
149
|
-
|
|
149
|
+
pass
|
orionis/metadata/framework.py
CHANGED
|
@@ -62,7 +62,7 @@ orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH
|
|
|
62
62
|
orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
63
|
orionis/console/request/cli_request.py,sha256=sH7Q2MpMIasiPiEPBeGhExnbfpSic98vQdAKvG9cgew,9071
|
|
64
64
|
orionis/console/stubs/command.stub,sha256=hvtIUd5JHOOsoHnrwF2yMkzFs2sZeeBgM8RZMPrNgjM,691
|
|
65
|
-
orionis/console/stubs/listener.stub,sha256=
|
|
65
|
+
orionis/console/stubs/listener.stub,sha256=R6QNFU2I2OiUJAvSye2Zrboith5v4S8GlePUIQNNFjc,4264
|
|
66
66
|
orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
orionis/console/tasks/schedule.py,sha256=QExrIRcxr7s31xY1-DLUsrc7GmeuAhFjpCo4OicnChg,93309
|
|
68
68
|
orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -206,7 +206,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=IrPQJwvQVLRm5Qnz0Cxon4
|
|
|
206
206
|
orionis/foundation/providers/testing_provider.py,sha256=eI1p2lUlxl25b5Z487O4nmqLE31CTDb4c3Q21xFadkE,1615
|
|
207
207
|
orionis/foundation/providers/workers_provider.py,sha256=GdHENYV_yGyqmHJHn0DCyWmWId5xWjD48e6Zq2PGCWY,1674
|
|
208
208
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
orionis/metadata/framework.py,sha256=
|
|
209
|
+
orionis/metadata/framework.py,sha256=144rPMiaSWVBgDzcZ9H-EIukPrsUG1X23SMS4BFaR-E,4720
|
|
210
210
|
orionis/metadata/package.py,sha256=s1JeGJPwdVh4jO3IOfmpwMuJ_oX6Vf9NL7jgPEQNf5Y,16050
|
|
211
211
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
212
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -401,8 +401,8 @@ orionis/test/validators/workers.py,sha256=HcZ3cnrk6u7cvM1xZpn_lsglHAq69_jx9RcTSv
|
|
|
401
401
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
402
|
orionis/test/view/render.py,sha256=arysoswhkV2vUd2aVMZRPpmH317jaWbgjDpQ_AWQ5AE,5663
|
|
403
403
|
orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
|
|
404
|
-
orionis-0.
|
|
405
|
-
orionis-0.
|
|
406
|
-
orionis-0.
|
|
407
|
-
orionis-0.
|
|
408
|
-
orionis-0.
|
|
404
|
+
orionis-0.730.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
405
|
+
orionis-0.730.0.dist-info/METADATA,sha256=4AI8C0GfVSxyoeL4xbmObgz6Q9_gbTxqY5WBPub7H34,4962
|
|
406
|
+
orionis-0.730.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
407
|
+
orionis-0.730.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
|
408
|
+
orionis-0.730.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|