Uses of Class
eu.cloudnetservice.modules.bridge.player.CloudOfflinePlayer
Packages that use CloudOfflinePlayer
Package
Description
-
Uses of CloudOfflinePlayer in eu.cloudnetservice.modules.bridge.event
Fields in eu.cloudnetservice.modules.bridge.event declared as CloudOfflinePlayerModifier and TypeFieldDescriptionprivate final CloudOfflinePlayerBridgeUpdateCloudOfflinePlayerEvent.cloudOfflinePlayerprivate final CloudOfflinePlayerBridgeDeleteCloudOfflinePlayerEvent.cloudPlayerMethods in eu.cloudnetservice.modules.bridge.event that return CloudOfflinePlayerModifier and TypeMethodDescriptionBridgeDeleteCloudOfflinePlayerEvent.cloudOfflinePlayer()Gets the cloud offline player that was deleted.BridgeUpdateCloudOfflinePlayerEvent.cloudOfflinePlayer()Gets the cloud offline player that was updated.Constructors in eu.cloudnetservice.modules.bridge.event with parameters of type CloudOfflinePlayerModifierConstructorDescriptionConstructs a cloud player delete event with the given cloud player.BridgeUpdateCloudOfflinePlayerEvent(@NonNull CloudOfflinePlayer cloudOfflinePlayer) Constructs a new cloud offline player update event with the given cloud offline player. -
Uses of CloudOfflinePlayer in eu.cloudnetservice.modules.bridge.node.command
Methods in eu.cloudnetservice.modules.bridge.node.command that return CloudOfflinePlayerModifier and TypeMethodDescriptionPlayersCommand.defaultCloudOfflinePlayerParser(@NonNull CommandInput input) Methods in eu.cloudnetservice.modules.bridge.node.command with parameters of type CloudOfflinePlayerModifier and TypeMethodDescriptionvoidPlayersCommand.deletePlayer(@NonNull eu.cloudnetservice.node.command.source.CommandSource source, @NonNull CloudOfflinePlayer player) voidPlayersCommand.displayPlayerInformation(@NonNull eu.cloudnetservice.node.command.source.CommandSource source, @NonNull CloudOfflinePlayer offlinePlayer) -
Uses of CloudOfflinePlayer in eu.cloudnetservice.modules.bridge.node.player
Fields in eu.cloudnetservice.modules.bridge.node.player with type parameters of type CloudOfflinePlayerModifier and TypeFieldDescriptionprotected final com.github.benmanes.caffeine.cache.LoadingCache<UUID, Optional<CloudOfflinePlayer>> NodePlayerManager.offlinePlayerCacheMethods in eu.cloudnetservice.modules.bridge.node.player that return CloudOfflinePlayerModifier and TypeMethodDescriptionNodePlayerManager.firstOfflinePlayer(@NonNull String name) NodePlayerManager.getOrRegisterOfflinePlayer(@NonNull NetworkPlayerProxyInfo proxyInfo) NodePlayerManager.offlinePlayer(@NonNull UUID uniqueId) Methods in eu.cloudnetservice.modules.bridge.node.player that return types with arguments of type CloudOfflinePlayerModifier and TypeMethodDescriptionNodePlayerManager.offlinePlayers(@NonNull String name) NodePlayerManager.registeredPlayers()Methods in eu.cloudnetservice.modules.bridge.node.player with parameters of type CloudOfflinePlayerModifier and TypeMethodDescriptionvoidNodePlayerManager.deleteCloudOfflinePlayer(@NonNull CloudOfflinePlayer cloudOfflinePlayer) voidNodePlayerManager.pushOfflinePlayerCache(@NonNull UUID uniqueId, @Nullable CloudOfflinePlayer cloudOfflinePlayer) voidNodePlayerManager.updateOfflinePlayer(@NonNull CloudOfflinePlayer player) -
Uses of CloudOfflinePlayer in eu.cloudnetservice.modules.bridge.player
Subclasses of CloudOfflinePlayer in eu.cloudnetservice.modules.bridge.playerModifier and TypeClassDescriptionclassThe online player is a player who is currently connected to one of the proxies.Methods in eu.cloudnetservice.modules.bridge.player that return CloudOfflinePlayerModifier and TypeMethodDescriptionCloudOfflinePlayer.clone()PlayerManager.firstOfflinePlayer(@NonNull String name) Gets the first registered offline player that has the given name.static @NonNull CloudOfflinePlayerCloudOfflinePlayer.offlineCopy(@NonNull CloudPlayer onlineVariant) Creates an offline copy from the given cloud online player.PlayerManager.offlinePlayer(@NonNull UUID uniqueId) Gets the offline player associated with the given unique id.Methods in eu.cloudnetservice.modules.bridge.player that return types with arguments of type CloudOfflinePlayerModifier and TypeMethodDescriptiondefault @NonNull CompletableFuture<CloudOfflinePlayer> PlayerManager.firstOfflinePlayerAsync(@NonNull String name) Gets the first registered offline player that has the given name asynchronously.default @NonNull CompletableFuture<List<CloudOfflinePlayer>> PlayerManager.offlinePlayerAsync(@NonNull String name) Gets all registered cloud players that have the given case-sensitive name asynchronously.default @NonNull CompletableFuture<CloudOfflinePlayer> PlayerManager.offlinePlayerAsync(@NonNull UUID uniqueId) Gets the offline player associated with the given unique id asynchronously.PlayerManager.offlinePlayers(@NonNull String name) Gets all registered cloud players that have the given case-sensitive name.PlayerManager.registeredPlayers()Gets a list with all registered players from the database.Methods in eu.cloudnetservice.modules.bridge.player with parameters of type CloudOfflinePlayerModifier and TypeMethodDescriptionvoidPlayerManager.deleteCloudOfflinePlayer(@NonNull CloudOfflinePlayer cloudOfflinePlayer) Deletes the given offline player from the database, the local cache of the node and calls the deletion in the cluster.default @NonNull CompletableFuture<Void> PlayerManager.deleteCloudOfflinePlayerAsync(@NonNull CloudOfflinePlayer cloudOfflinePlayer) Deletes the given offline player from the database, the local cache of the node and calls the deletion in the cluster asynchronously.voidPlayerManager.updateOfflinePlayer(@NonNull CloudOfflinePlayer cloudOfflinePlayer) Updates the given cloud offline player in the database, in the local cache of the node and calls the update in the cluster.default @NonNull CompletableFuture<Void> PlayerManager.updateOfflinePlayerAsync(@NonNull CloudOfflinePlayer cloudOfflinePlayer) Updates the given cloud offline player in the database, in the local cache of the node and calls the update in the cluster asynchronously.