Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readMessageFrame (0.15 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt

       */
      @Throws(IOException::class)
      fun processNextFrame() {
        check(!closed) { "closed" }
    
        readHeader()
        if (isControlFrame) {
          readControlFrame()
        } else {
          readMessageFrame()
        }
      }
    
      @Throws(IOException::class, ProtocolException::class)
      private fun readHeader() {
        if (receivedCloseFrame) throw IOException("closed")
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 16:11:23 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top