Exemple #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
Exemple #2
0
    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)
    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 = {}
Exemple #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 = {}
Exemple #5
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.metrics_receivers = {}
     self.events_receivers = {}
     self.maintenance_receivers = {}
Exemple #6
0
 def __init__(self, bus, observer):
     WebSocketPlugin.__init__(self, bus)
     self.observer = observer
Exemple #7
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
Exemple #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()
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = defaultdict(dict)
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
Exemple #11
0
 def __init__(self, *pargs, **kwargs):
     WebSocketPlugin.__init__(self, *pargs, **kwargs)
Exemple #12
0
 def __init__(self, *pargs, **kwargs):
     WebSocketPlugin.__init__(self, *pargs, **kwargs)
Exemple #13
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
     self.main_client_code = -1
Exemple #14
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = []
     self.history = []
     self.history_size = HISTORY_SIZE
Exemple #15
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = {}
Exemple #16
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
Exemple #17
0
 def __init__(self, bus):
     WebSocketPlugin.__init__(self, bus)
     self.clients = []
     self.history = []
     self.history_size = HISTORY_SIZE