/* * Copyright (c) 2013-present RedisBungee contributors * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * * http://www.eclipse.org/legal/epl-v10.html */ package com.imaginarycode.minecraft.redisbungee.events; import com.imaginarycode.minecraft.redisbungee.api.events.IPlayerLeftNetworkEvent; import net.md_5.bungee.api.plugin.Event; import java.util.UUID; /** * This event is sent when a player disconnects. RedisBungee sends the event only when * the proxy the player has been connected to is different than the local proxy. *

* This event corresponds to {@link net.md_5.bungee.api.event.PlayerDisconnectEvent}, and is fired * asynchronously. * * @since 0.3.4 */ public class PlayerLeftNetworkEvent extends Event implements IPlayerLeftNetworkEvent { private final UUID uuid; public PlayerLeftNetworkEvent(UUID uuid) { this.uuid = uuid; } @Override public UUID getUuid() { return uuid; } }