Package | Description |
---|---|
com.smartfoxserver.v2.persistence.room |
Modifier and Type | Method and Description |
---|---|
java.util.List<CreateRoomSettings> |
IRoomStorage.loadAllRooms()
Load all stored Rooms for this Zone
|
java.util.List<CreateRoomSettings> |
IRoomStorage.loadAllRooms(java.lang.String groupId)
Load all Rooms belonging to a specific Room Group
|
CreateRoomSettings |
IRoomStorage.loadRoom(java.lang.String name)
Loads the setting of a previously saved Room
|
void |
IRoomStorage.removeAllRooms()
Remove all stored Rooms for this Zone from the storage system (Use wisely!)
|
void |
IRoomStorage.removeAllRooms(java.lang.String groupId)
Remove all stored Rooms belonging to a specific Room Group
|
void |
IRoomStorage.removeRoom(java.lang.String name)
Remove a saved Room from the storage system
|
void |
IRoomStorage.saveAllRooms()
Saves all Rooms in the Zone
|
void |
IRoomStorage.saveAllRooms(java.lang.String groupId)
Saves all Rooms belonging to the provided group name
|
void |
IRoomStorage.saveRoom(Room theRoom)
Save a Room and its state
|