def __init__(self, port_use=None):
     TCPServer.__init__(self, port_use, self.handler)
     self.create_table()
Ejemplo n.º 2
0
 def __init__(self, port_use=None):
     TCPServer.__init__(self, port_use, self.handler)
     self.rooms = dict()
     self.room_ids = []
Ejemplo n.º 3
0
 def __init__(self, port_use=None):
     TCPServer.__init__(self, port_use, self.handler)
     self.create_table()
Ejemplo n.º 4
0
 def __init__(self, port_use=None):
     TCPServer.__init__(self, port_use, self.handler)
     self.BUCKET_LOCATION = os.path.join(self.BUCKET_LOCATION, str(self.PORT))