Interface ArenaManager
-
public interface ArenaManager
場地管理器
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Arena
getFinalArena()
獲取投票最終結果場地, 結果尚未出爐,則為 nullList<Arena>
getLoadedArenas()
獲取已被加載的場地
-
-
-
Method Detail
-
getFinalArena
Arena getFinalArena()
獲取投票最終結果場地, 結果尚未出爐,則為 null- Returns:
- 最終場地
-
getLoadedArenas
List<Arena> getLoadedArenas() throws ArenaNotLoadedException, FinalArenaAlreadyExistException
獲取已被加載的場地- Returns:
- 已被加載的場地
- Throws:
ArenaNotLoadedException
- 場地未加載時FinalArenaAlreadyExistException
- 最終場地已經出現時
-
-