-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsplit_sync.py
More file actions
69 lines (50 loc) · 1.95 KB
/
Copy pathsplit_sync.py
File metadata and controls
69 lines (50 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""Split Synchronization task."""
import logging
from splitio.tasks import BaseSynchronizationTask
from splitio.tasks.util.asynctask import AsyncTask, AsyncTaskAsync
_LOGGER = logging.getLogger(__name__)
class SplitSynchronizationTaskBase(BaseSynchronizationTask):
"""Split Synchronization task class."""
def start(self):
"""Start the task."""
self._task.start()
def stop(self, event=None):
"""Stop the task. Accept an optional event to set when the task has finished."""
pass
def is_running(self):
"""
Return whether the task is running.
:return: True if the task is running. False otherwise.
:rtype bool
"""
return self._task.running()
class SplitSynchronizationTask(SplitSynchronizationTaskBase):
"""Split Synchronization task class."""
def __init__(self, synchronize_splits, period):
"""
Class constructor.
:param synchronize_splits: Handler
:type synchronize_splits: func
:param period: Period of task
:type period: int
"""
self._period = period
self._task = AsyncTask(synchronize_splits, period, on_init=None)
def stop(self, event=None):
"""Stop the task. Accept an optional event to set when the task has finished."""
self._task.stop(event)
class SplitSynchronizationTaskAsync(SplitSynchronizationTaskBase):
"""Split Synchronization async task class."""
def __init__(self, synchronize_splits, period):
"""
Class constructor.
:param synchronize_splits: Handler
:type synchronize_splits: func
:param period: Period of task
:type period: int
"""
self._period = period
self._task = AsyncTaskAsync(synchronize_splits, period, on_init=None)
async def stop(self, event=None):
"""Stop the task. Accept an optional event to set when the task has finished."""
await self._task.stop(True)