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 |
ObjectUtil — class, package net.user1.utils |
|
Utilities for working with Objects. |
observe() — method, class net.user1.reactor.Client |
|
Asks the server to keep this client's state permanently synchronized. |
observe() — method, class net.user1.reactor.CustomClient |
| |
observe() — method, interface net.user1.reactor.IClient |
| |
observe(password:String, updateLevels:net.user1.reactor:UpdateLevels) — method, class net.user1.reactor.Room |
|
Sends an "observe room" request to the server; if successful, the
current client begins spectating the room's activity, and will
receiving updates about the room and its occupants. |
observe() — method, class net.user1.reactor.UserAccount |
|
Asks the server to notify the current client any time this UserAccount's
state changes. |
OBSERVE — Constant Static Variable, class net.user1.reactor.AccountEvent |
|
Dispatched when the current client observes a user account. |
OBSERVE — Event, class net.user1.reactor.AccountManager |
| |
OBSERVE — Event, class net.user1.reactor.Client |
| |
OBSERVE — Constant Static Variable, class net.user1.reactor.ClientEvent |
|
Dispatched when the current client observes a client. |
OBSERVE — Event, class net.user1.reactor.ClientManager |
| |
OBSERVE — Event, class net.user1.reactor.Room |
| |
OBSERVE — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when the current client successfully observes a room,
either in response to server-side code or in response to an
earlier request made by the current client to observe the room. |
OBSERVE — Event, class net.user1.reactor.UserAccount |
| |
observeAccount(userID:String) — method, class net.user1.reactor.AccountManager |
|
Asks the server to register the current client as an observer of the
user account specified by userID. |
OBSERVE_ACCOUNT — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for OBSERVE_ACCOUNT, a UPC-fomatted
message sent to the server. |
OBSERVE_ACCOUNT_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
observeClient(clientID:String) — method, class net.user1.reactor.ClientManager |
|
Asks the server to register the current client as an observer of the
client specified by clientID. |
OBSERVE_CLIENT — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for OBSERVE_CLIENT, a UPC-fomatted
message sent to the server. |
OBSERVE_CLIENT_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
OBSERVED_ROOM — Constant Static Variable, class net.user1.reactor.UPC |
| |
OBSERVED_ROOM_ADDED_TO_CLIENT — Constant Static Variable, class net.user1.reactor.UPC |
| |
observedRoomIDs — Variable, class net.user1.reactor.ClientManifest |
| |
OBSERVED_ROOM_REMOVED_FROM_CLIENT — Constant Static Variable, class net.user1.reactor.UPC |
| |
observerCount — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time the number of
clients observing the target room changes; defaults to false. |
OBSERVER_COUNT — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when the number of observers in a room changes while the
current client is in or observing the room and the current client has
enabled either "observer-list" updates or "observer-count" updates for
the room (note that neither are enabled by default). |
OBSERVE_RESULT — Constant Static Variable, class net.user1.reactor.AccountEvent |
|
Dispatched when the result of an earlier UserAccount.observe()
or AccountManager.observeAccount() request is received. |
OBSERVE_RESULT — Event, class net.user1.reactor.AccountManager |
| |
OBSERVE_RESULT — Event, class net.user1.reactor.Client |
| |
OBSERVE_RESULT — Constant Static Variable, class net.user1.reactor.ClientEvent |
|
Dispatched when the result of an earlier Client.observe()
or ClientManager.observeClient() request is received. |
OBSERVE_RESULT — Event, class net.user1.reactor.ClientManager |
| |
OBSERVE_RESULT — Event, class net.user1.reactor.Room |
| |
OBSERVE_RESULT — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when the result of an earlier observe-room
request by the current client is received. |
OBSERVE_RESULT — Event, class net.user1.reactor.RoomManager |
| |
OBSERVE_RESULT — Event, class net.user1.reactor.UserAccount |
| |
observerList — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time a client
observes or stops observing the target room; defaults to false. |
observerLoginLogoff — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time an observer
of the target room logs in or logs off; defaults to true. |
observeRoom(roomID:String, password:String, updateLevels:net.user1.reactor:UpdateLevels) — method, class net.user1.reactor.RoomManager |
|
The observeRoom() method provides a means for a client to spectate a
room's state and activity without actually being in that room. |
OBSERVE_ROOM — Event, class net.user1.reactor.Client |
| |
OBSERVE_ROOM — Constant Static Variable, class net.user1.reactor.ClientEvent |
|
Dispatched when the client that triggered this event observes a room. |
OBSERVE_ROOM — Constant Static Variable, class net.user1.reactor.UPC |
|
The internal message id for OBSERVE_ROOM, a UPC-fomatted message
sent to the server. |
OBSERVE_ROOM_RESULT — Constant Static Variable, class net.user1.reactor.UPC |
| |
occupantCount — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time the number of
clients in the target room changes; defaults to false. |
OCCUPANT_COUNT — Event, class net.user1.reactor.Room |
| |
OCCUPANT_COUNT — Constant Static Variable, class net.user1.reactor.RoomEvent |
|
Dispatched when the number of occupants in a room changes while the
current client is in or observing the room and the current client has
enabled either "occupant-list" updates or "occupant-count" updates for
the room (note that occupant-list updates are enabled by default). |
occupantList — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time a client
joins or leaves the target room; defaults to true. |
occupantLoginLogoff — Variable, class net.user1.reactor.UpdateLevels |
|
When true, the current client is sent an update any time an occupant
of the target room logs in or logs off; defaults to true. |
occupiedRoomIDs — Variable, class net.user1.reactor.ClientManifest |
| |
oldValue — Variable, class net.user1.reactor.Attribute |
|
The attribute's old value. |
onLoad — Variable, class net.user1.reactor.snapshot.Snapshot |
|
A callback function to be invoked when this snapshot's data is loaded. |
OR — Constant Static Variable, class net.user1.reactor.filters.BooleanGroupType |
|
Represents the Boolean OR operation. |
OrGroup — final class, package net.user1.reactor.filters |
|
Defines a Boolean OR relationship between multiple comparisons in a
message filter. |
OrGroup() — Constructor, class net.user1.reactor.filters.OrGroup |
|
Constructor
|
OSERVER_COUNT — Event, class net.user1.reactor.Room |
| |
|
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 |