Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for retryDecision (0.04 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/ClientRuleEventListener.kt

      ) {
        logWithTime("cacheConditionalHit")
    
        delegate.cacheConditionalHit(call, cachedResponse)
      }
    
      override fun retryDecision(
        call: Call,
        exception: IOException,
        retry: Boolean,
      ) {
        logWithTime("retryDecision")
    
        delegate.retryDecision(call, exception, retry)
      }
    
      override fun followUpDecision(
        call: Call,
        networkResponse: Response,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt

      override fun cacheConditionalHit(
        call: Call,
        cachedResponse: Response,
      ) = logEvent(CacheConditionalHit(System.nanoTime(), call))
    
      override fun retryDecision(
        call: Call,
        exception: IOException,
        retry: Boolean,
      ) = logEvent(RetryDecision(System.nanoTime(), call, exception, retry))
    
      override fun followUpDecision(
        call: Call,
        networkResponse: Response,
        nextRequest: Request?,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/CallEvent.kt

        override val call: Call,
      ) : CallEvent()
    
      data class CacheConditionalHit(
        override val timestampNs: Long,
        override val call: Call,
      ) : CallEvent()
    
      data class RetryDecision(
        override val timestampNs: Long,
        override val call: Call,
        val exception: IOException,
        val retry: Boolean,
      ) : CallEvent()
    
      data class FollowUpDecision(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top