Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for downstream (0.04 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        private val protocol: Protocol,
      ) : Http2Connection.Listener() {
        private val nextExchangeIndex = AtomicInteger()
    
        @Throws(IOException::class)
        override fun onStream(stream: Http2Stream) {
          val peek = dispatcher.peek()
          if (handleSocketEffect(peek.onRequestStart, socket, stream)) {
            dispatchBookkeepingRequest(
              connectionIndex = connectionIndex,
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        val maxConcurrentStreamsUpdated = CountDownLatch(1)
        val maxConcurrentStreams = AtomicInteger()
        val listener: Http2Connection.Listener =
          object : Http2Connection.Listener() {
            override fun onStream(stream: Http2Stream): Unit = throw AssertionError()
    
            override fun onSettings(
              connection: Http2Connection,
              settings: Settings,
            ) {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
Back to top