All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.devslash.StaticHttpAdapter.kt Maven / Gradle / Ivy

package net.devslash

import kotlinx.coroutines.delay
import java.net.URI

class StaticHttpAdapter : HttpClientAdapter {
  val resp = HttpResponse(URI("http://example.com"), 200, mapOf(), byteArrayOf())
  override suspend fun request(httpRequest: HttpRequest): HttpResponse {
    delay(50)
    return resp
  }

  override fun close() = Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy