update tests
This commit is contained in:
18
replication_system.py
Normal file
18
replication_system.py
Normal file
@ -0,0 +1,18 @@
|
||||
import zmq
|
||||
|
||||
from libs.esper import esper
|
||||
|
||||
class ReplicationSystem(esper.Processor):
|
||||
"""
|
||||
Handle Client-Server session managment
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
# Initialize poll set
|
||||
|
||||
|
||||
# TODO: Use zmq_poll..
|
||||
async def process(self):
|
||||
# This will iterate over every Entity that has BOTH of these components:
|
||||
print("test")
|
Reference in New Issue
Block a user