Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EventListener (0.1 sec)

  1. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/Dns;-><clinit>()V
    HSPLokhttp3/EventListener$Companion$NONE$1;-><init>()V
    HSPLokhttp3/EventListener;-><clinit>()V
    HSPLokhttp3/EventListener;-><init>()V
    HSPLokhttp3/EventListener;->callEnd(Lokhttp3/Call;)V
    HSPLokhttp3/EventListener;->callFailed(Lokhttp3/Call;Ljava/io/IOException;)V
    HSPLokhttp3/EventListener;->callStart(Lokhttp3/Call;)V
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

      fun connectionIsImmediatelyUnhealthy() {
        val listener: EventListener =
          object : EventListener() {
            override fun connectionAcquired(
              call: Call,
              connection: Connection,
            ) {
              connection.socket().closeQuietly()
            }
          }
        client =
          client.newBuilder()
            .eventListener(listener)
            .build()
        executeSynchronously("/")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top