Ejemplo n.º 1
0
 def __init__(self, bus, settings):
     WebSocketPlugin.__init__(self, bus)
     self.daemon = True
     self.clients = []
     self.style_settings = settings
     self.history = []
     self.history_size = HISTORY_SIZE
Ejemplo n.º 2
0
Archivo: ws.py Proyecto: opmuse/opmuse
    def __init__(self, bus):
        try:
            import wsaccel
            wsaccel.patch_ws4py()
        except ImportError:
            # wsaccel isn't a requirement. also, this occurs when docs are
            # built on readthedocs.org
            pass

        BaseWebSocketPlugin.__init__(self, bus)
Ejemplo n.º 3
0
    def __init__(self, bus):
        """
        This plugin is the board controller. It keeps
        track of all boards and their registered participants.

        You may access the global instance of this plugin
        through the `bus.websockets` attribute.
        """
        WebSocketPlugin.__init__(self, bus)

        # every 30s, we check if we have dead boards
        # and we clean them
        plugins.Monitor(bus, self.drop_dead_boards, 30).subscribe()
    
        # board index to quickly retrieve
        # clients of a given board
        self.boards = {}
Ejemplo n.º 4
0
    def __init__(self, bus):
        """
        This plugin is the board controller. It keeps
        track of all boards and their registered participants.

        You may access the global instance of this plugin
        through the `bus.websockets` attribute.
        """
        WebSocketPlugin.__init__(self, bus)

        # every 30s, we check if we have dead boards
        # and we clean them
        plugins.Monitor(bus, self.drop_dead_boards, 30).subscribe()
    
        # board index to quickly retrieve
        # clients of a given board
        self.boards = {}
Ejemplo n.º 5
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.metrics_receivers = {}
     self.events_receivers = {}
     self.maintenance_receivers = {}
Ejemplo n.º 6
0
 def __init__(self, bus, observer):
     WebSocketPlugin.__init__(self, bus)
     self.observer = observer
Ejemplo n.º 7
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
Ejemplo n.º 8
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.ws_servers_lock = threading.Lock()
     self.ws_clients_lock = threading.Lock()
     self.ws_servers = dict()
     self.ws_clients = dict()
Ejemplo n.º 9
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = defaultdict(dict)
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
Ejemplo n.º 11
0
 def __init__(self, *pargs, **kwargs):
     WebSocketPlugin.__init__(self, *pargs, **kwargs)
Ejemplo n.º 12
0
 def __init__(self, *pargs, **kwargs):
     WebSocketPlugin.__init__(self, *pargs, **kwargs)
Ejemplo n.º 13
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
     self.main_client_code = -1
Ejemplo n.º 14
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = []
     self.history = []
     self.history_size = HISTORY_SIZE
Ejemplo n.º 15
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
Ejemplo n.º 16
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
Ejemplo n.º 17
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = []
     self.history = []
     self.history_size = HISTORY_SIZE