orionis 0.95.0__py3-none-any.whl → 0.100.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/framework.py +1 -1
- orionis/luminate/app.py +1 -0
- orionis/luminate/providers/commands/scheduler_provider.py +1 -1
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/METADATA +1 -1
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/RECORD +9 -9
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/LICENCE +0 -0
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/WHEEL +0 -0
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.95.0.dist-info → orionis-0.100.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
orionis/luminate/app.py
CHANGED
@@ -267,6 +267,7 @@ class Application(metaclass=SingletonMeta):
|
|
267
267
|
_log_provider.boot()
|
268
268
|
|
269
269
|
# Load the scheduler provider, which is responsible for managing scheduled tasks.
|
270
|
+
# Developers can interact with it through the facade "orionis.luminate.facades.scheduler.scheduler_facade.Schedule".
|
270
271
|
_schedule_provider = ScheduleServiceProvider(app=self.container)
|
271
272
|
_schedule_provider.register()
|
272
273
|
_schedule_provider.boot()
|
@@ -7,7 +7,7 @@ class ScheduleServiceProvider(ServiceProvider):
|
|
7
7
|
"""
|
8
8
|
Registers services or bindings into the given container.
|
9
9
|
"""
|
10
|
-
self._container_id = self.app.
|
10
|
+
self._container_id = self.app.scoped(ScheduleService)
|
11
11
|
|
12
12
|
def boot(self,) -> None:
|
13
13
|
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/cli_manager.py,sha256=0bM-hABXJSoPGuvEgnqeaj9qcLP8VjTQ3z9Mb0TSEUI,1381
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=lHRRg_agLStJ7hUNadauQ5G3Fq84nO2EhTzbJyACRF4,1387
|
4
4
|
orionis/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/contracts/bootstrap/i_command_bootstrapper.py,sha256=cfpYWSlNhOY1q_C9o0H7F381OoM0Oh0qaeqP-c85nzk,2457
|
6
6
|
orionis/contracts/bootstrap/i_config_bootstrapper.py,sha256=d2TXT74H2fCBbzWgrt9-ZG11S_H_YPQOEcJoIOrsgb0,4462
|
@@ -60,7 +60,7 @@ orionis/installer/installer_manager.py,sha256=Hb6T0bmSl39T30maY-nUWkrLhG77JdrKe4
|
|
60
60
|
orionis/installer/installer_output.py,sha256=LeKxzuXpnHOKbKpUtx3tMGkCi2bGcPV1VNnfBxwfxUU,7161
|
61
61
|
orionis/installer/installer_setup.py,sha256=c2HtVklSa-2_-YVonc7fwtoK-RTDqBS2Ybvbekgfqtc,6970
|
62
62
|
orionis/luminate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
-
orionis/luminate/app.py,sha256=
|
63
|
+
orionis/luminate/app.py,sha256=cQZdnPOKZ7Sm4OWvR55U-DwKGPFnDfWgXQM4sB2AG4s,12088
|
64
64
|
orionis/luminate/app_context.py,sha256=se2xpsGoy_drcuOROC7OHaIAN5Yd0kbm5V1zzsxxyQc,996
|
65
65
|
orionis/luminate/bootstrap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
66
|
orionis/luminate/bootstrap/command_bootstrapper.py,sha256=JJkWWOS2R2Zg7mC7-VMtZ0wAgxlegMkdnqudpbAjxwk,6925
|
@@ -122,7 +122,7 @@ orionis/luminate/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
122
122
|
orionis/luminate/providers/service_provider.py,sha256=Ave9V10KPVCI6bt3HwJ51322P-_RnQuHXkC-ltlAOOA,1537
|
123
123
|
orionis/luminate/providers/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
124
|
orionis/luminate/providers/commands/reactor_commands_service_provider.py,sha256=3HX3wwPCH_Y9OsoTyfC4_LrNlPW_-UaffDcz3Wehuvk,701
|
125
|
-
orionis/luminate/providers/commands/scheduler_provider.py,sha256=
|
125
|
+
orionis/luminate/providers/commands/scheduler_provider.py,sha256=owOzdGIZmkeTFJQ3yyG8Hk2Kb8l-jXmaJHAo7v3_uAk,670
|
126
126
|
orionis/luminate/providers/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
127
127
|
orionis/luminate/providers/config/config_service_provider.py,sha256=NLKB3Vcu4kqZ0WyeImMG3CsclSu_P4aWs6yXitcv474,659
|
128
128
|
orionis/luminate/providers/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -161,9 +161,9 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
tests/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
162
|
tests/tools/class_example.py,sha256=dIPD997Y15n6WmKhWoOFSwEldRm9MdOHTZZ49eF1p3c,1056
|
163
163
|
tests/tools/test_reflection.py,sha256=bhLQ7VGVod4B8sv-rW9AjnOumvaBVsoxieA3sdoM2yM,5244
|
164
|
-
orionis-0.
|
165
|
-
orionis-0.
|
166
|
-
orionis-0.
|
167
|
-
orionis-0.
|
168
|
-
orionis-0.
|
169
|
-
orionis-0.
|
164
|
+
orionis-0.100.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
165
|
+
orionis-0.100.0.dist-info/METADATA,sha256=6dS6qhV_OmXnsHTvYogNRzGqWLf5G2QGWCYkO8dT4kU,2979
|
166
|
+
orionis-0.100.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
167
|
+
orionis-0.100.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
|
168
|
+
orionis-0.100.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
169
|
+
orionis-0.100.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|