Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for failRejected (0.04 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

            executorService.execute(this)
            success = true
          } catch (e: RejectedExecutionException) {
            failRejected(e)
          } finally {
            if (!success) {
              client.dispatcher.finished(this) // This call is no longer running!
            }
          }
        }
    
        internal fun failRejected(e: RejectedExecutionException? = null) {
          val ioException = InterruptedIOException("executor rejected")
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dispatcher.kt

            callDispatcherQueueStart = false
          } else {
            call.call.eventListener.dispatcherQueueEnd(call.call, this)
          }
    
          if (executorIsShutdown) {
            call.failRejected()
          } else {
            call.executeOn(executorService)
          }
        }
    
        if (callDispatcherQueueStart && enqueuedCall != null) {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Oct 07 14:16:22 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top