X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Firc%2Fevent%2FConnectionClosed.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Firc%2Fevent%2FConnectionClosed.java;h=184f1f11e51b9cf9a784611173b93c1497888afb;hb=b128f3dd48287d8141150a43ab02459b363c9e25;hp=0000000000000000000000000000000000000000;hpb=029ac191fbe3b39b323a76790ba1605a380e02e1;p=xudocci.git diff --git a/src/main/java/net/pterodactylus/irc/event/ConnectionClosed.java b/src/main/java/net/pterodactylus/irc/event/ConnectionClosed.java new file mode 100644 index 0000000..184f1f1 --- /dev/null +++ b/src/main/java/net/pterodactylus/irc/event/ConnectionClosed.java @@ -0,0 +1,71 @@ +/* + * XdccDownloader - ConnectionClosed.java - Copyright © 2013 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.irc.event; + +import net.pterodactylus.irc.Connection; + +import com.google.common.base.Optional; + +/** + * Notifies a listener that a connection to an IRC server was closed. + * + * @author David ‘Bombe’ Roden + */ +public class ConnectionClosed extends AbstractConnectionEvent { + + /** The optional cause of the connection closing. */ + private final Optional cause; + + /** + * Creates a new connection established event. + * + * @param connection + * The connection the event occured on + */ + public ConnectionClosed(Connection connection) { + this(connection, null); + } + + /** + * Creates a new connection established event. + * + * @param connection + * The connection the event occured on + * @param cause + * The cause of the connection closing + */ + public ConnectionClosed(Connection connection, Throwable cause) { + super(connection); + this.cause = Optional.fromNullable(cause); + } + + // + // ACCESSORS + // + + /** + * Returns the cause of the connection closing. + * + * @return The cause of the connection closing, or {@link Optional#absent()} if + * the connection was closed properly + */ + public Optional cause() { + return cause; + } + +}