-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathevents_sync.py
More file actions
76 lines (54 loc) · 2.41 KB
/
Copy pathevents_sync.py
File metadata and controls
76 lines (54 loc) · 2.41 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
70
71
72
73
74
75
76
"""Events syncrhonization task."""
import logging
from splitio.tasks import BaseSynchronizationTask
from splitio.tasks.util.asynctask import AsyncTask, AsyncTaskAsync
_LOGGER = logging.getLogger(__name__)
class EventsSyncTaskBase(BaseSynchronizationTask):
"""Events synchronization task base uses an asynctask.AsyncTask to send events."""
def start(self):
"""Start executing the events synchronization task."""
self._task.start()
def stop(self, event=None):
"""Stop executing the events synchronization task."""
pass
def flush(self):
"""Flush events in storage."""
_LOGGER.debug('Forcing flush execution for events')
self._task.force_execution()
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 EventsSyncTask(EventsSyncTaskBase):
"""Events synchronization task uses an asynctask.AsyncTask to send events."""
def __init__(self, synchronize_events, period):
"""
Class constructor.
:param synchronize_events: Events Api object to send data to the backend
:type synchronize_events: splitio.api.events.EventsAPI
:param period: How many seconds to wait between subsequent event pushes to the BE.
:type period: int
"""
self._period = period
self._task = AsyncTask(synchronize_events, self._period, on_stop=synchronize_events)
def stop(self, event=None):
"""Stop executing the events synchronization task."""
self._task.stop(event)
class EventsSyncTaskAsync(EventsSyncTaskBase):
"""Events synchronization task uses an asynctask.AsyncTaskAsync to send events."""
def __init__(self, synchronize_events, period):
"""
Class constructor.
:param synchronize_events: Events Api object to send data to the backend
:type synchronize_events: splitio.api.events.EventsAPIAsync
:param period: How many seconds to wait between subsequent event pushes to the BE.
:type period: int
"""
self._period = period
self._task = AsyncTaskAsync(synchronize_events, self._period, on_stop=synchronize_events)
async def stop(self, event=None):
"""Stop executing the events synchronization task."""
await self._task.stop(True)