Package sfs3.client.entities.variables
Interface RoomVariable
- All Superinterfaces:
Variable
- All Known Implementing Classes:
SFSRoomVariable
The RoomVariable interface defines all the public methods and properties that an object representing a SmartFoxServer Room Variable exposes.
In the SmartFoxServer 3 client API this interface is implemented by the SFSRoomVariable class. Read the class description for additional informations.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether this Room Variable is persistent or not.booleanIndicates whether this Room Variable is private or not.voidsetPersistent(boolean persistent) voidsetPrivate(boolean setPrivate) Methods inherited from interface sfs3.client.entities.variables.Variable
getBoolValue, getByteValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getName, getSFSArrayValue, getSFSObjectValue, getSFSVector2Value, getSFSVector3Value, getShortValue, getStringValue, getType, getValue, isNull, toSFSArray
-
Method Details
-
isPrivate
boolean isPrivate()Indicates whether this Room Variable is private or not. A private Room Variable can be modified by its owner only (the user that created it).NOTE: setting the isPersistent property manually on an existing Room Variable returned by the API has no effect on the server and can disrupt the API functioning. This flag can be set when the Room Variable object is created by the developer only (using the new keyword).
-
isPersistent
boolean isPersistent()Indicates whether this Room Variable is persistent or not. A persistent Room Variable continues to exist in the Room after the user who created it has left it and until he disconnects.NOTE: setting the isPersistent property manually on an existing Room Variable returned by the API has no effect on the server and can disrupt the API functioning. This flag can be set when the Room Variable object is created by the developer only (using the new keyword).
-
setPrivate
void setPrivate(boolean setPrivate) - Internal
-
setPersistent
void setPersistent(boolean persistent) - Internal
-