- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMirrors (0.07 sec)
-
src/test/java/jcifs/internal/smb2/multichannel/ChannelInfoTest.java
assertEquals(0, channelInfo.getBytesSent()); assertEquals(0, channelInfo.getBytesReceived()); assertEquals(0, channelInfo.getRequestsSent()); assertEquals(0, channelInfo.getErrors()); channelInfo.addBytesSent(1000); channelInfo.addBytesReceived(2000); channelInfo.incrementRequestsSent(); channelInfo.incrementErrors();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ public long getRequestsReceived() { return requestsReceived.get(); } /** * Get number of errors * * @return error count */ public long getErrors() { return errors.get(); } /** * Add bytes sent * * @param bytes number of bytes */ public void addBytesSent(long bytes) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0)