- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isFailed (0.06 sec)
-
src/main/java/jcifs/smb/SmbSessionImpl.java
return !this.transport.isDisconnected() && this.connectionState.get() == 2; } /** * @return whether the session has been lost */ public boolean isFailed () { return this.transport.isFailed(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
Socket s = this.socket; return super.isDisconnected() || s == null || s.isClosed(); } @Override public boolean isFailed () { Socket s = this.socket; return super.isFailed() || s == null || s.isClosed(); } @Override public boolean hasCapability ( int cap ) throws SmbException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)