- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for signalAll (0.11 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt
this.source.finished = true } open = isOpen condition.signalAll() } if (!open) { connection.removeStream(id) } } fun receiveRstStream(errorCode: ErrorCode) { this.withLock { if (this.errorCode == null) { this.errorCode = errorCode condition.signalAll() } } } /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 23.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt
if (coordinatorTask != null) { waitingCoordinatorNotified = true currentTask = coordinatorTask taskRunner.condition.signalAll() } else { startNextTask() } } } } override fun coordinatorWait( taskRunner: TaskRunner,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 29 00:33:04 UTC 2024 - 12.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ForwardingCondition.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 1.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt
internal fun removeStream(streamId: Int): Http2Stream? { this.withLock { val stream = streams.remove(streamId) // The removed stream may be blocked on a connection-wide window update. condition.signalAll() return stream } } internal fun updateConnectionFlowControl(read: Long) { this.withLock { readBytes.update(total = read)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 32.6K bytes - Viewed (0)