Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Gibt den Status der Verbindung zurück.
byte Connection.getState() throws ULjException
Das Byte, das den Status der Verbindung darstellt.
Das folgende Beispiel zeigt, wie Sie den Verbindungsstatus prüfen und die Verbindung freigeben.
if( _conn.getState() == Connection.CONNECTED ){ _conn.release(); }