clientmanager
(plugins.clientmanager)
Returned Types
Broadcaster,JSClientInformation,
Methods Summarized
Type | Name | Summary |
---|---|---|
Create a broadcast object giving it a (nick)name and on a specific channel, the callback is used for getting messages of other clients on that channel The function gets 3 arguments (nickName, message, channelName) | ||
Returns the current client JSClientInformation object. | ||
Returns an array of JSClientInformation elements describing the clients connected to the server. | ||
Returns an array of JSClientInformation elements describing the clients connected to the server filtered by the a client info string. | ||
Get client that locked the record from a specific datasource or null if record is not locked. | ||
Get a dataset will all locks on the server. | ||
Get a broadcast object giving it a (nick)name and on a specific channel var broadcaster = plugins. | ||
Get a broadcast object giving it a (nick)name and on a specific channel, the callback is used for getting messages of other clients on that channel The function gets 3 arguments (nickName, message, channelName) | ||
Returns true if the server is in maintenance mode, false otherwise. | ||
void | Release all locks acquired by a client WARNING: use with care | |
void | Sends a message to all connected clients. | |
void | Sends a message to a specific client, identified by its clientId. | |
void | Shuts down all connected clients. | |
void | Shuts down a specific client, identified by its clientId. | |
void | Shuts down a specific client, identified by its clientId. |
Methods Detailed
createBroadcaster(name, channelName, callback)
Create a broadcast object giving it a (nick)name and on a specific channel, the callback is used for getting messages of other clients on that channel The function gets 3 arguments (nickName, message, channelName)
Parameters
String name The nickname for this user on this channel
String channelName The channel name where should be listened to (and send messages to)
Function callback The callback when for incomming messages
Returns: Broadcaster BroadCaster
Sample
getClientInformation()
Returns the current client JSClientInformation object. Note this is snapshot information, client information will not get updated.
Returns: JSClientInformation
getConnectedClients()
Returns an array of JSClientInformation elements describing the clients connected to the server. Note this is snapshot information on connected clients, client information will not get updated.
Returns: Array JSClientInformation[]
Sample
getConnectedClients(clientInfoFilter)
Returns an array of JSClientInformation elements describing the clients connected to the server filtered by the a client info string. This way you can ask for a specific set of clients that have a specific information added to there client information. Note this is snapshot information on connected clients, client information will not get updated.
Parameters
String clientInfoFilter The filter string
Returns: Array JSClientInformation[]
Sample
getLockedByClient(datasource, pks)
Get client that locked the record from a specific datasource or null if record is not locked.
Parameters
Returns: JSClientInformation Client information
Sample
getLocks()
Get a dataset will all locks on the server. The dataset will have four columns: datasource, acquireDate, clientId, pkHash. Each row in the dataset will be a lock.
Returns: JSDataSet
Sample
getOrCreateBroadcaster(name, channelName)
Get a broadcast object giving it a (nick)name and on a specific channel var broadcaster = plugins.clientmanager.getBroadcaster("nickname", "mychatchannel"); broadcaster.broadcastMessage("Hallo");
Parameters
String name The nickname for this user on this channel
String channelName The channel name where should be listened to (and send messages to)
Returns: Broadcaster BroadCaster
getOrCreateBroadcaster(name, channelName, callback)
Get a broadcast object giving it a (nick)name and on a specific channel, the callback is used for getting messages of other clients on that channel The function gets 3 arguments (nickName, message, channelName)
Parameters
String name The nickname for this user on this channel
String channelName The channel name where should be listened to (and send messages to)
Function callback The callback when for incomming messages
Returns: Broadcaster BroadCaster
Sample
getServerBuildDate()
Returns: Date
isInMaintenanceMode()
Returns true if the server is in maintenance mode, false otherwise.
Returns: Boolean
Sample
releaseLocks(clientId)
Release all locks acquired by a client
WARNING: use with care
Parameters
String clientId ;
Returns: void
sendMessageToAllClients(message)
Sends a message to all connected clients.
Parameters
String message ;
Returns: void
Sample
sendMessageToClient(clientId, message)
Sends a message to a specific client, identified by its clientId. The clientIds are retrieved by calling the getConnectedClients method.
Parameters
Returns: void
Sample
shutDownAllClients()
Shuts down all connected clients. This method returns immediately, it does not wait until the client shuts down.
Returns: void
Sample
shutDownClient(clientId)
Shuts down a specific client, identified by its clientId. The clientIds are retrieved by calling the getConnectedClients method. This method returns immediately, it does not wait until the client shuts down.
Parameters
String clientId ;
Returns: void
Sample
shutDownClient(clientId, forceUnregister)
Shuts down a specific client, identified by its clientId. The clientIds are retrieved by calling the getConnectedClients method. This method returns immediately, it does not wait until the client shuts down. If forceUnregister is true, the client will unregister itself from server. Beware this should be used only if you are sure client is already closed (cannot connect anymore)
Parameters
Returns: void
Sample
Last updated