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

com.ufoscout.vertk.web.client.K.kt Maven / Gradle / Ivy

There is a newer version: 3.9.3
Show newest version
package com.ufoscout.vertk.web.client

import io.vertx.ext.web.client.HttpRequest
import io.vertx.ext.web.client.HttpResponse

fun  HttpRequest.putHeaders(vararg headers: Pair): HttpRequest {
    headers.forEach { this.putHeader(it.first, it.second) }
    return this
}

inline fun  HttpResponse.bodyAsJson(): T {
        return this.bodyAsJson(T::class.java)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy