Expose whether an FCP connection is closed
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / FcpConnection.java
index b191ad1..0eda39d 100644 (file)
@@ -156,6 +156,10 @@ public class FcpConnection implements Closeable {
                fcpListenerManager.removeListener(fcpListener);
        }
 
+       public synchronized boolean isClosed() {
+               return connectionHandler != null;
+       }
+
        //
        // ACTIONS
        //