Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for versary (0.19 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

                }
                else -> {
                  // Ignore an unexpected pong.
                }
              }
            }
          } else {
            // Send a reply to a client ping if this is a server and vice versa.
            writerQueue.execute("$connectionName ping") {
              writePing(true, payload1, payload2)
            }
          }
        }
    
        override fun goAway(
          lastGoodStreamId: Int,
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. docs/contribute/concurrency.md

    ### Holding multiple locks
    
    You're allowed to take the Http2Connection lock while holding the Http2Writer lock. But not vice-versa. Because taking the Http2Writer lock can block.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 7K bytes
    - Viewed (0)
Back to top