A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
Reactor — class, package net.user1.reactor |
|
The Reactor class is the root class of every Reactor client application. |
Reactor(configURL:String, traceLogMessages:Boolean) — Constructor, class net.user1.reactor.Reactor |
|
Constructor; initializes new Reactor instances. |
ReactorEvent — class, package net.user1.reactor |
|
ReactorEvent is a simple data class used to pass information from
an application's Reactor object to registered event-listeners when
a Reactor event occurs. |
ReactorEvent(type:String, bubbles:Boolean, cancelable:Boolean, serverUPCVersion:net.user1.reactor:VersionNumber, connectionRefusal:net.user1.reactor:ConnectionRefusal) — Constructor, class net.user1.reactor.ReactorEvent |
|
Constructor. |
read(record:String, field:String) — Static Method , class net.user1.utils.LocalData |
|
Retrieves a locally saved value. |
read(record:String, field:String) — method, class net.user1.utils.MemoryStore |
| |
READY — Event, class net.user1.reactor.Connection |
| |
READY — Constant Static Variable, class net.user1.reactor.ConnectionEvent |
|
Dispatched when an IConnection object achieves a fully initialized
connection to the server. |
READY — Event, class net.user1.reactor.ConnectionManager |
| |
READY — Constant Static Variable, class net.user1.reactor.ConnectionManagerEvent |
|
An event triggered when one of the IConnection objects in the
ConnectionManager's connection list achieves a READY state. |
READY — Constant Static Variable, class net.user1.reactor.ConnectionState |
|
A connection state indicating that the client has a fully established
connection to Union Server, and has successfully negotiated a
client/server handshake. |
READY — Event, class net.user1.reactor.Reactor |
| |
READY — Constant Static Variable, class net.user1.reactor.ReactorEvent |
|
Dispatched when a connection to the server has been
established and fully initialized. |
reason — Variable, class net.user1.reactor.ConnectionRefusal |
|
Returns the reason for a connection refusal by Union Server. |
RECEIVE_DATA — Event, class net.user1.reactor.Connection |
| |
RECEIVE_DATA — Constant Static Variable, class net.user1.reactor.ConnectionEvent |
|
Dispatched whenever any data is received from Union Server by an
IConnection object. |
RECEIVE_MESSAGE — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for RECEIVE_MESSAGE, a UPC-fomatted message
sent to the client from the server. |
RECEIVE_UPC — Constant Static Variable, class net.user1.reactor.ConnectionEvent |
|
Dispatched when a UPC-formatted message is received
by an IConnection object. |
RECEIVE_UPC — Event, class net.user1.reactor.HTTPConnection |
| |
RECEIVE_UPC — Event, class net.user1.reactor.SecureSocketConnection |
| |
RECEIVE_UPC — Event, class net.user1.reactor.XMLSocketConnection |
| |
remove(password:String) — method, class net.user1.reactor.Room |
|
Asks the server to remove this room. |
remove(array:Array, item:Object) — Static Method , class net.user1.utils.ArrayUtil |
|
Removes the specified object from the provided Array object. |
remove(key:Object) — method, class net.user1.utils.LRUCache |
| |
remove(record:String, field:String) — Static Method , class net.user1.utils.LocalData |
|
Removes a locally saved value. |
remove(record:String, field:String) — method, class net.user1.utils.MemoryStore |
| |
removeAccount(userID:String, password:String) — method, class net.user1.reactor.AccountManager |
|
Removes an existing user account. |
REMOVE_ACCOUNT — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for REMOVE_ACCOUNT, a UPC-fomatted message
sent to the server. |
REMOVE_ACCOUNT_RESULT — Event, class net.user1.reactor.AccountManager |
| |
REMOVE_ACCOUNT_RESULT — Constant Static Variable, class net.user1.reactor.AccountManagerEvent |
|
Dispatched when the result of an earlier call to AccountManager's
removeAccount() method is received. |
REMOVE_ACCOUNT_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
removeAllConnections() — method, class net.user1.reactor.ConnectionManager |
|
Removes all IConnection objects from this ConnectionManager's
connection list. |
REMOVE_CLIENT_ATTR — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for REMOVE_CLIENT_ATTR, a UPC-fomatted message
sent to the server. |
REMOVE_CLIENT_ATTR_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
removeConnection(connection:net.user1.reactor:IConnection) — method, class net.user1.reactor.ConnectionManager |
|
Removes the specified IConnection object from this ConnectionManager's
connection list. |
REMOVED — Event, class net.user1.reactor.Room |
| |
REMOVED — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when a room that was previously known to the current client
becomes unknown. |
REMOVED — Constant Static Variable, class net.user1.reactor.Status |
| |
removeEventListener(type:String, listener:Function, useCapture:Boolean) — method, class net.user1.reactor.CustomClient |
| |
removeMessageListener(message:String, listener:Function) — method, class net.user1.reactor.MessageManager |
|
Unregisters a message listener method that was earlier registered
for message notifications via addMessageListener(). |
removeMessageListener(message:String, listener:Function) — method, class net.user1.reactor.Room |
|
Unregisters a message listener previously registered via addMessageListener(). |
removeMessageListenersOnDisconnect(enabled:Boolean) — method, class net.user1.reactor.MessageManager |
|
Enables or disables automatic message-listener removal. |
REMOVE_OBSERVER — Event, class net.user1.reactor.Room |
| |
REMOVE_OBSERVER — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when a client stops observing a room and the following two conditions
are met: 1) the current client is in or observing the room, 2)
the current client has enabled "observer-list" updates for the room
(observer-list updates are disabled by default). |
REMOVE_OCCUPANT — Event, class net.user1.reactor.Room |
| |
REMOVE_OCCUPANT — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when a client leaves a room and the following two conditions
are met: 1) the current client is in or observing the room, 2)
the current client has enabled "occupant-list" updates for the room
(occupant-list updates are enabled by default). |
removeOnEmpty — Variable, class net.user1.reactor.RoomSettings |
|
Indicates whether the room should remove itself when it becomes empty
(all its clients leave). |
removeRole(userID:String, role:String) — method, class net.user1.reactor.AccountManager |
|
Removes a security role from a user account. |
removeRole(userID:String, role:String) — method, class net.user1.reactor.UserAccount |
|
Removes a security role from the account. |
REMOVE_ROLE — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for REMOVE_ROLE, a UPC-fomatted
message sent to the server. |
REMOVE_ROLE_RESULT — Constant Static Variable, class net.user1.reactor.AccountEvent |
|
Dispatched when the result of an earlier UserAccount.removeRole()
or AccountManager.removeRole() request is received. |
REMOVE_ROLE_RESULT — Event, class net.user1.reactor.AccountManager |
| |
REMOVE_ROLE_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
REMOVE_ROLE_RESULT — Event, class net.user1.reactor.UserAccount |
| |
removeRoom(roomID:String, password:String) — method, class net.user1.reactor.RoomManager |
|
Asks the server to remove the specified room. |
REMOVE_ROOM — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for REMOVE_ROOM, a UPC-fomatted message
sent to the server. |
REMOVE_ROOM_ATTR — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for REMOVE_ROOM_ATTR, a UPC-fomatted message
sent to the server. |
REMOVE_ROOM_ATTR_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
REMOVE_ROOM_RESULT — Event, class net.user1.reactor.RoomManager |
| |
REMOVE_ROOM_RESULT — Constant Static Variable, class net.user1.reactor.RoomManagerEvent |
|
Dispatched when the server reports the result of a remove-room
attempt by the current client. |
REMOVE_ROOM_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
removeSuppressionTerm(term:String) — method, class net.user1.logger.Logger |
|
Instructs the log to stop ignoring entries containing the specified
term. |
resetUPCStats() — method, class net.user1.reactor.Server |
|
Asks Union Server to reset server-side UPC-processing statistics. |
RESET_UPC_STATS — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for RESET_UPC_STATS, a UPC-fomatted
message sent to the server. |
RESET_UPC_STATS_RESULT — Constant Static Variable, class net.user1.reactor.ServerEvent |
|
Dispatched when the server reports the result of a reset-UPC-stats
attempt by the current client. |
RESET_UPC_STATS_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
restoreDefaults() — method, class net.user1.reactor.ConnectionMonitor |
|
Sets the monitor to its default configuration. |
restoreDefaults() — method, class net.user1.reactor.UpdateLevels |
|
Sets all update levels to their default values, as specified in the
documentation for each update level constant. |
revision — Variable, class net.user1.reactor.VersionNumber |
|
The revision component of a version number (e.g., the
0 in 1.2.0.34). |
ROLE_NOT_FOUND — Constant Static Variable, class net.user1.reactor.Status |
| |
Room — class, package net.user1.reactor |
|
The Room class represents a Union room, which is a place for clients to
engage in group communication. |
Room(id:String, roomManager:net.user1.reactor:RoomManager, messageManager:net.user1.reactor:MessageManager, clientManager:net.user1.reactor:ClientManager, accountManager:net.user1.reactor:AccountManager, log:net.user1.logger:Logger) — Constructor, class net.user1.reactor.Room |
|
Initializes new Room instances. |
ROOM_ADDED — Event, class net.user1.reactor.RoomManager |
| |
ROOM_ADDED — Constant Static Variable, class net.user1.reactor.RoomManagerEvent |
|
Dispatched when the current client gains knowledge of a new room. |
ROOM_ADDED — Constant Static Variable, class net.user1.reactor.UPC |
| |
ROOM_ATTR_REMOVED — Constant Static Variable, class net.user1.reactor.UPC |
| |
ROOM_ATTR_UPDATE — Constant Static Variable, class net.user1.reactor.UPC |
| |
RoomClassRegistry — class, package net.user1.reactor |
|
RoomClassRegistry maintains a catalog of the classes that are used
to represent the rooms in an application. |
RoomClassRegistry() — Constructor, class net.user1.reactor.RoomClassRegistry |
| |
ROOM_COUNT — Event, class net.user1.reactor.RoomManager |
| |
ROOM_COUNT — Constant Static Variable, class net.user1.reactor.RoomManagerEvent |
|
Dispatched whenever the RoomManager gains or loses knowledge of a room,
as described under RoomManagerEvent.ROOM_ADDED and
RoomManagerEvent.ROOM_REMOVED. |
RoomEvent — class, package net.user1.reactor |
|
RoomEvent is a simple data class used to pass information from
a Room object to registered event-listeners when a room event occurs. |
RoomEvent(type:String, bubbles:Boolean, cancelable:Boolean, client:net.user1.reactor:IClient, clientID:String, status:String, changedAttr:net.user1.reactor:Attribute, numClients:int, roomID:String) — Constructor, class net.user1.reactor.RoomEvent |
|
Constructor
|
ROOM_EXISTS — Constant Static Variable, class net.user1.reactor.Status |
| |
ROOM_FULL — Constant Static Variable, class net.user1.reactor.Status |
| |
RoomIDParser — final class, package net.user1.reactor |
|
Provides convenience methods for retreiving the qualifier and simple id
of a string fully qualified room id. |
roomIsKnown(roomID:String) — method, class net.user1.reactor.RoomManager |
|
Returns true if the specified room is known to the RoomManager. |
RoomListSnapshot — class, package net.user1.reactor.snapshot |
|
The RoomListSnapshot class is used to load a list of fully qualified
roomIDs for all rooms on the server or all rooms with a given qualifier. |
RoomListSnapshot(qualifier:String, recursive:Boolean) — Constructor, class net.user1.reactor.snapshot.RoomListSnapshot |
|
Constructor
|
ROOMLIST_SNAPSHOT — Constant Static Variable, class net.user1.reactor.UPC |
| |
RoomManager — class, package net.user1.reactor |
|
The RoomManager class provides access to Room objects, and utilities for
creating, destroying, joining, and observing rooms on the server. |
RoomManager(reactor:net.user1.reactor:Reactor) — Constructor, class net.user1.reactor.RoomManager |
|
Constructor
|
RoomManagerEvent — class, package net.user1.reactor |
|
RoomManagerEvent is a simple data class used to pass information from
an application's RoomManager to registered event-listeners when
a room-management event occurs. |
RoomManagerEvent(type:String, bubbles:Boolean, cancelable:Boolean, roomID:String, status:String, roomIdQualifier:String, room:net.user1.reactor:Room, numRooms:int) — Constructor, class net.user1.reactor.RoomManagerEvent |
|
Constructor. |
roomMessages — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time a message is
sent to the target room; defaults to true. |
RoomModules — class, package net.user1.reactor |
|
A simple data container indicating the locations and names of
a set of server-side room modules. |
RoomModules() — Constructor, class net.user1.reactor.RoomModules |
|
Constructor. |
ROOM_NOT_FOUND — Constant Static Variable, class net.user1.reactor.Status |
| |
ROOM_OBSERVERCOUNT_UPDATE — Constant Static Variable, class net.user1.reactor.UPC |
| |
ROOM_OCCUPANTCOUNT_UPDATE — Constant Static Variable, class net.user1.reactor.UPC |
| |
ROOM_REMOVED — Event, class net.user1.reactor.RoomManager |
| |
ROOM_REMOVED — Constant Static Variable, class net.user1.reactor.RoomManagerEvent |
|
Dispatched when the current client loses knowledge of a new room. |
ROOM_REMOVED — Constant Static Variable, class net.user1.reactor.UPC |
| |
RoomSettings — class, package net.user1.reactor |
|
A simple data container describing the configuration settings for a
room. |
RoomSnapshot — class, package net.user1.reactor.snapshot |
|
The RoomSnapshot class is used to load a "snapshot" of a room on the
server. |
RoomSnapshot(roomID:String, password:String, updateLevels:net.user1.reactor:UpdateLevels) — Constructor, class net.user1.reactor.snapshot.RoomSnapshot |
|
Constructor
|
ROOM_SNAPSHOT — Constant Static Variable, class net.user1.reactor.UPC |
| |
RS — Constant Static Variable, class net.user1.reactor.Tokens |
|
The character used by the client as a record separator when serializing
attributes or any other form of composite data. |
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |