HttpClient

dev.hnaderi.k8s.client.HttpClient
trait HttpClient[F[_]]

Attributes

Source:
Request.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

Attributes

Source:
Request.scala
def get[O : Decoder](url: String, params: (String, String)*): F[O]

Attributes

Source:
Request.scala

Attributes

Source:
Request.scala
def post[I : Encoder, O : Decoder](url: String, params: (String, String)*)(body: I): F[O]

Attributes

Source:
Request.scala
def put[I : Encoder, O : Decoder](url: String, params: (String, String)*)(body: I): F[O]

Attributes

Source:
Request.scala

Concrete methods

final def send[O](req: HttpRequest[O]): F[O]

Attributes

Source:
Request.scala