From 33d21c2de354374e36f85ba820d8022e79ab4b39 Mon Sep 17 00:00:00 2001 From: Paul Speed Date: Fri, 1 May 2015 02:26:33 -0400 Subject: [PATCH] Added an isStarted() method to Client. --- jme3-networking/src/main/java/com/jme3/network/Client.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jme3-networking/src/main/java/com/jme3/network/Client.java b/jme3-networking/src/main/java/com/jme3/network/Client.java index dd9873238..3ef9134df 100644 --- a/jme3-networking/src/main/java/com/jme3/network/Client.java +++ b/jme3-networking/src/main/java/com/jme3/network/Client.java @@ -55,6 +55,12 @@ public interface Client extends MessageConnection */ public boolean isConnected(); + /** + * Returns true if this client has been started and is still + * running. + */ + public boolean isStarted(); + /** * Returns a unique ID for this client within the remote * server or -1 if this client isn't fully connected to the