Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for abstract (0.14 sec)

  1. okhttp/api/okhttp.api

    }
    
    public abstract interface class okhttp3/Call : java/lang/Cloneable {
    	public abstract fun cancel ()V
    	public abstract fun clone ()Lokhttp3/Call;
    	public abstract fun enqueue (Lokhttp3/Callback;)V
    	public abstract fun execute ()Lokhttp3/Response;
    	public abstract fun isCanceled ()Z
    	public abstract fun isExecuted ()Z
    	public abstract fun request ()Lokhttp3/Request;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      )
    
      internal class Close(
        val code: Int,
        val reason: ByteString?,
        val cancelAfterCloseMillis: Long,
      )
    
      abstract class Streams(
        val client: Boolean,
        val source: BufferedSource,
        val sink: BufferedSink,
      ) : Closeable {
        abstract fun cancel()
      }
    
      private inner class WriterTask : Task("$name writer") {
        override fun runOnce(): Long {
          try {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 01 14:21:25 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          this.withLock {
            currentPushRequests.remove(streamId)
          }
        }
      }
    
      /** Listener of streams and settings initiated by the peer. */
      abstract class Listener {
        /**
         * Handle a new stream from this connection's peer. Implementations should respond by either
         * [replying to the stream][Http2Stream.writeHeaders] or [closing it][Http2Stream.close]. This
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

            chunkSize: Int,
          ) {
            response.body(content)
            response.socketPolicy(DisconnectAtEnd)
            response.removeHeader("Content-Length")
          }
        }, ;
    
        abstract fun setBody(
          response: MockResponse.Builder,
          content: Buffer,
          chunkSize: Int,
        )
    
        fun setBody(
          response: MockResponse.Builder,
          content: String,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/api/logging-interceptor.api

    	public static fun values ()[Lokhttp3/logging/HttpLoggingInterceptor$Level;
    }
    
    public abstract interface class okhttp3/logging/HttpLoggingInterceptor$Logger {
    	public static final field Companion Lokhttp3/logging/HttpLoggingInterceptor$Logger$Companion;
    	public static final field DEFAULT Lokhttp3/logging/HttpLoggingInterceptor$Logger;
    	public abstract fun log (Ljava/lang/String;)V
    }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 09:14:38 GMT 2024
    - 4.5K bytes
    - Viewed (1)
Back to top