- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNextResponse (0.07 sec)
-
src/test/java/jcifs/util/transport/ResponseTest.java
Response nextResponseMock = mock(Response.class); when(mockResponse.getNextResponse()).thenReturn(nextResponseMock); assertEquals(nextResponseMock, mockResponse.getNextResponse()); // Test null next response when(mockResponse.getNextResponse()).thenReturn(null); assertNull(mockResponse.getNextResponse()); // Verify the method was called
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Response.java
* @param e the exception to set */ void exception(Exception e); /** * Gets the next response in the chain. * * @return chained response */ Response getNextResponse();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockResponse.java
* * @return is an async response */ boolean isAsync(); /** * * @return the next response */ @Override CommonServerMessageBlockResponse getNextResponse(); /** * Prepares this response for the next request. * * @param next the next request to prepare for */ void prepare(CommonServerMessageBlockRequest next);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0)