ironflock 1.0.4__tar.gz → 1.0.6__tar.gz
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.
- {ironflock-1.0.4/ironflock.egg-info → ironflock-1.0.6}/PKG-INFO +1 -1
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock/__init__.py +1 -1
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock/ironflock.py +2 -4
- {ironflock-1.0.4 → ironflock-1.0.6/ironflock.egg-info}/PKG-INFO +1 -1
- {ironflock-1.0.4 → ironflock-1.0.6}/setup.py +1 -1
- {ironflock-1.0.4 → ironflock-1.0.6}/LICENSE +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/MANIFEST.in +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/README.md +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock/AutobahnConnection.py +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock.egg-info/SOURCES.txt +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock.egg-info/dependency_links.txt +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock.egg-info/requires.txt +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/ironflock.egg-info/top_level.txt +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/pyproject.toml +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/requirements.txt +0 -0
- {ironflock-1.0.4 → ironflock-1.0.6}/setup.cfg +0 -0
|
@@ -44,10 +44,8 @@ class IronFlock:
|
|
|
44
44
|
async def onJoin(session, details):
|
|
45
45
|
print("component joined")
|
|
46
46
|
self._session = session
|
|
47
|
-
self._main_task = asyncio.create_task(mainFunc())
|
|
48
|
-
|
|
49
47
|
if self.mainFunc:
|
|
50
|
-
|
|
48
|
+
self._main_task = asyncio.create_task(mainFunc())
|
|
51
49
|
|
|
52
50
|
@self._component.on_disconnect
|
|
53
51
|
@self._component.on_leave
|
|
@@ -127,7 +125,7 @@ class IronFlock:
|
|
|
127
125
|
res = await self._session.call('ironflock.location_service.update', payload, **extra)
|
|
128
126
|
return res
|
|
129
127
|
|
|
130
|
-
async def register_function(self, topic: str, func
|
|
128
|
+
async def register_function(self, topic: str, func):
|
|
131
129
|
"""Registers a function to be called when a message is received on the given topic.
|
|
132
130
|
|
|
133
131
|
Args:
|
|
@@ -10,7 +10,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
10
10
|
|
|
11
11
|
setup(
|
|
12
12
|
name="ironflock",
|
|
13
|
-
version="1.0.
|
|
13
|
+
version="1.0.6",
|
|
14
14
|
description="SDK to integrate your IronFlock Industry 4 Apps with the IronFlock Data Infrastructure",
|
|
15
15
|
long_description=long_description,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|