- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getNextResponse (0.13 seconds)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 8.1K bytes - Click Count (0) -
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
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.5K bytes - Click Count (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();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.2K bytes - Click Count (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);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0)