-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsegment_sync.py
More file actions
65 lines (44 loc) · 1.71 KB
/
Copy pathsegment_sync.py
File metadata and controls
65 lines (44 loc) · 1.71 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
"""Segment syncrhonization module."""
import logging
from splitio.tasks import BaseSynchronizationTask
from splitio.tasks.util import asynctask
_LOGGER = logging.getLogger(__name__)
class SegmentSynchronizationTaskBase(BaseSynchronizationTask):
"""Segment Syncrhonization base class."""
def start(self):
"""Start segment synchronization."""
self._task.start()
def stop(self, event=None):
"""Stop segment synchronization."""
pass
def is_running(self):
"""
Return whether the task is running or not.
:return: True if the task is running. False otherwise.
:rtype: bool
"""
return self._task.running()
class SegmentSynchronizationTask(SegmentSynchronizationTaskBase):
"""Segment Syncrhonization class."""
def __init__(self, synchronize_segments, period):
"""
Clas constructor.
:param synchronize_segments: handler for syncing segments
:type synchronize_segments: func
"""
self._task = asynctask.AsyncTask(synchronize_segments, period, on_init=None)
def stop(self, event=None):
"""Stop segment synchronization."""
self._task.stop(event)
class SegmentSynchronizationTaskAsync(SegmentSynchronizationTaskBase):
"""Segment Syncrhonization async class."""
def __init__(self, synchronize_segments, period):
"""
Clas constructor.
:param synchronize_segments: handler for syncing segments
:type synchronize_segments: func
"""
self._task = asynctask.AsyncTaskAsync(synchronize_segments, period, on_init=None)
async def stop(self):
"""Stop segment synchronization."""
await self._task.stop(True)