- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for removeStream (0.31 seconds)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt
*/ fun openStreamCount(): Int = withLock { streams.size } fun getStream(id: Int): Http2Stream? = withLock { streams[id] } internal fun removeStream(streamId: Int): Http2Stream? { withLock { val stream = streams.remove(streamId) // The removed stream may be blocked on a connection-wide window update. notifyAll()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 31.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
} this.errorCode = errorCode this.errorException = errorException notifyAll() if (source.finished && sink.finished) { return false } } connection.removeStream(id) return true } @Throws(IOException::class) fun receiveData( source: BufferedSource, length: Int, ) { assertLockNotHeld()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jul 07 18:57:05 GMT 2025 - 22.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
when(addedStream.getFileName()).thenReturn("file.txt:stream"); FileNotifyInformation removedStream = mock(FileNotifyInformation.class); when(removedStream.getAction()).thenReturn(FileNotifyInformation.FILE_ACTION_REMOVED_STREAM); when(removedStream.getFileName()).thenReturn("file.txt:removedstream"); FileNotifyInformation modifiedStream = mock(FileNotifyInformation.class);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21.2K bytes - Click Count (0)