Missing docstring for ChannelNotFoundException.
Missing docstring for ChannelClient.
Dict([itr])
Dict{K,V}() constructs a hash table with keys of type K and values of type V. Keys are compared with isequal and hashed with hash.
Given a single iterable argument, constructs a Dict whose key-value pairs are taken from 2-tuples (key,value) generated by the argument.
Examples
julia> Dict([("A", 1), ("B", 2)])
Dict{String, Int64} with 2 entries:
  "B" => 2
  "A" => 1
Alternatively, a sequence of pair arguments may be passed.
julia> Dict("A"=>1, "B"=>2)
Dict{String, Int64} with 2 entries:
  "B" => 2
  "A" => 1
Dict([itr])
Dict{K,V}() constructs a hash table with keys of type K and values of type V. Keys are compared with isequal and hashed with hash.
Given a single iterable argument, constructs a Dict whose key-value pairs are taken from 2-tuples (key,value) generated by the argument.
Examples
julia> Dict([("A", 1), ("B", 2)])
Dict{String, Int64} with 2 entries:
  "B" => 2
  "A" => 1
Alternatively, a sequence of pair arguments may be passed.
julia> Dict("A"=>1, "B"=>2)
Dict{String, Int64} with 2 entries:
  "B" => 2
  "A" => 1
Missing docstring for MessagePayload.
Missing docstring for ChannelMessage.
Missing docstring for CLIENTS.
Missing docstring for SUBSCRIPTIONS.
Missing docstring for clients.
Missing docstring for subscriptions.
Missing docstring for websockets.
Missing docstring for channels.
Missing docstring for connected_clients.
Missing docstring for disconnected_clients.
Unsubscribes a web socket client ws from all the channels.
unsubscribedisconnectedclients() :: ChannelClientsCollection
Unsubscribes clients which are no longer connected.
Removes the subscription of client to channel.
Removes all subscriptions of client.
Pushes msg (and payload) to all the clients subscribed to the channels in channels, with the exception of except.
Pushes msg (and payload) to all the clients subscribed to the channels in channels, with the exception of except.