All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sx.blah.discord.handle.impl.events.shard.DisconnectedEvent Maven / Gradle / Ivy

Go to download

A Java binding for the official Discord API, forked from the inactive https://github.com/nerd/Discord4J. Copyright (c) 2017, Licensed under GNU LGPLv3

The newest version!
/*
 *     This file is part of Discord4J.
 *
 *     Discord4J is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Lesser General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     Discord4J is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Lesser General Public License for more details.
 *
 *     You should have received a copy of the GNU Lesser General Public License
 *     along with Discord4J.  If not, see .
 */

package sx.blah.discord.handle.impl.events.shard;

import sx.blah.discord.api.IShard;
import sx.blah.discord.api.internal.GatewayOps;

/**
 * Dispatched when a shard disconnects from Discord.
 */
public class DisconnectedEvent extends ShardEvent {

	private final Reason reason;

	public DisconnectedEvent(Reason reason, IShard shard) {
		super(shard);
		this.reason = reason;
	}

	/**
	 * Gets the reason the shard disconnected.
	 *
	 * @return The reason the shard disconnected.
	 */
	public Reason getReason() {
		return reason;
	}

	/**
	 * The possible reasons for the shard disconnecting.
	 */
	public enum Reason {
		/**
		 * The gateway received {@link GatewayOps#INVALID_SESSION}. The shard will attempt to begin a new session.
		 */
		INVALID_SESSION_OP,
		/**
		 * The gateway received {@link GatewayOps#RECONNECT}. The shard will attempt to resume.
		 */
		RECONNECT_OP,
		/**
		 * A direct call to {@link IShard#logout()} was made.
		 */
		LOGGED_OUT,
		/**
		 * Something unknown caused the websocket to close. The shard will attempt to resume.
		 */
		ABNORMAL_CLOSE
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy