Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 592 Bytes

STRUCTURE.md

File metadata and controls

26 lines (25 loc) · 592 Bytes

serverMap

Type: Map<string, SocketServer>

    [
        [name: string, server: SocketServer],
        [name: string, server: SocketServer],
        [name: string, server: SocketServer]
        ...
    ]

connectionMap

Type: Map<SocketServer, Map<string, WebSocket>>

    [
        [
            server: SocketServer, 
            [
                [hash: string, connection: WebSocket],
                [hash: string, connection: WebSocket],
                [hash: string, connection: WebSocket],
                ...
            ]
        ]
    ]