Uses of Interface
com.smartfoxserver.v2.entities.variables.RoomVariable
-
Packages that use RoomVariable Package Description com.smartfoxserver.v2.api com.smartfoxserver.v2.entities com.smartfoxserver.v2.entities.variables -
-
Uses of RoomVariable in com.smartfoxserver.v2.api
Methods in com.smartfoxserver.v2.api that return types with arguments of type RoomVariable Modifier and Type Method Description java.util.List<RoomVariable>
CreateRoomSettings. getRoomVariables()
Get the list of Room Variables for the new RoomMethod parameters in com.smartfoxserver.v2.api with type arguments of type RoomVariable Modifier and Type Method Description void
CreateRoomSettings. setRoomVariables(java.util.List<RoomVariable> roomVariables)
Set one or more Room Variables in the new Roomvoid
ISFSApi. setRoomVariables(User user, Room targetRoom, java.util.List<RoomVariable> variables)
Set Room Variables.void
ISFSApi. setRoomVariables(User user, Room targetRoom, java.util.List<RoomVariable> variables, boolean fireClientEvent, boolean fireServerEvent, boolean overrideOwnership)
Set Room Variables.void
SFSApi. setRoomVariables(User user, Room targetRoom, java.util.List<RoomVariable> variables)
Set Room Variables.void
SFSApi. setRoomVariables(User user, Room targetRoom, java.util.List<RoomVariable> variables, boolean fireClientEvent, boolean fireServerEvent, boolean overrideOwnership)
Set Room Variables. -
Uses of RoomVariable in com.smartfoxserver.v2.entities
Methods in com.smartfoxserver.v2.entities that return RoomVariable Modifier and Type Method Description RoomVariable
Room. getVariable(java.lang.String varName)
Get a Room VariableRoomVariable
SFSRoom. getVariable(java.lang.String varName)
Get a Room VariableMethods in com.smartfoxserver.v2.entities that return types with arguments of type RoomVariable Modifier and Type Method Description java.util.List<RoomVariable>
Room. getVariables()
Get the full list of Room Variables in the Roomjava.util.List<RoomVariable>
SFSRoom. getVariables()
Get the full list of Room Variables in the Roomjava.util.List<RoomVariable>
Room. getVariablesCreatedByUser(User user)
Get a list of Room Variables created by a specific Userjava.util.List<RoomVariable>
SFSRoom. getVariablesCreatedByUser(User user)
Get a list of Room Variables created by a specific Userjava.util.List<RoomVariable>
Room. removeVariablesCreatedByUser(User user)
java.util.List<RoomVariable>
Room. removeVariablesCreatedByUser(User user, boolean isLeaveRoom)
java.util.List<RoomVariable>
SFSRoom. removeVariablesCreatedByUser(User user)
java.util.List<RoomVariable>
SFSRoom. removeVariablesCreatedByUser(User user, boolean isLeaveRoom)
Methods in com.smartfoxserver.v2.entities with parameters of type RoomVariable Modifier and Type Method Description void
Room. setVariable(RoomVariable roomVariable)
void
Room. setVariable(RoomVariable roomVariable, boolean overridOwnership)
void
SFSRoom. setVariable(RoomVariable roomVariable)
void
SFSRoom. setVariable(RoomVariable roomVariable, boolean overrideOwnership)
Method parameters in com.smartfoxserver.v2.entities with type arguments of type RoomVariable Modifier and Type Method Description void
Room. setVariables(java.util.List<RoomVariable> variables)
void
Room. setVariables(java.util.List<RoomVariable> variables, boolean overridOwnership)
void
SFSRoom. setVariables(java.util.List<RoomVariable> variables)
void
SFSRoom. setVariables(java.util.List<RoomVariable> variables, boolean overrideOwnership)
-
Uses of RoomVariable in com.smartfoxserver.v2.entities.variables
Classes in com.smartfoxserver.v2.entities.variables that implement RoomVariable Modifier and Type Class Description class
SFSRoomVariable
RoomVariables are custom values attached to each Room object that get automatically updated between client and server on every change.
-