Uses of Class
nl.andrewl.concord_server.channel.Channel
Packages that use Channel
Package
Description
-
Uses of Channel in nl.andrewl.concord_server.channel
Fields in nl.andrewl.concord_server.channel with type parameters of type ChannelModifier and TypeFieldDescriptionChannelManager.channelIdMap
ChannelManager.channelNameMap
ChannelManager.privateChannels
Methods in nl.andrewl.concord_server.channel that return ChannelModifier and TypeMethodDescriptionChannelManager.getPrivateChannel
(Set<UUID> clientIds) Gets or creates a private channel for the given client ids to be able to communicate together.private Channel
ChannelManager.getPrivateChannelFromDatabase
(Set<UUID> clientIds) Gets and instantiates a private channel from information stored in the "private-channels" collection of the database, or creates it if it does not exist yet.Methods in nl.andrewl.concord_server.channel that return types with arguments of type ChannelModifier and TypeMethodDescriptionChannelManager.getChannelById
(UUID id) ChannelManager.getChannelByName
(String name) ChannelManager.getChannels()
ChannelManager.getDefaultChannel()
ChannelManager.getPrivateChannel
(UUID clientId, UUID channelId) Gets a private channel, given the id of a client who is part of the channel, and the id of the channel.Methods in nl.andrewl.concord_server.channel with parameters of type ChannelModifier and TypeMethodDescriptionvoid
ChannelManager.addChannel
(Channel channel) int
void
ChannelManager.moveToChannel
(ClientThread client, Channel channel) Moves a client to the given channel.void
ChannelManager.removeChannel
(Channel channel) -
Uses of Channel in nl.andrewl.concord_server.client
Fields in nl.andrewl.concord_server.client declared as Channel -
Uses of Channel in nl.andrewl.concord_server.event
Methods in nl.andrewl.concord_server.event with parameters of type ChannelModifier and TypeMethodDescriptionprivate nl.andrewl.concord_core.msg.types.chat.ChatHistoryResponse
ChatHistoryRequestHandler.getResponse
(Channel channel, long count, Long from, Long to) Gets a response for a standard chat history request, using a standard set of parameters.private void
ChatHistoryRequestHandler.handleIdRequest
(ClientThread client, Channel channel, String id) Handles a request for a single message from a channel.