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

sttp.client3.internal.httpclient.Sequencer.scala Maven / Gradle / Ivy

There is a newer version: 3.10.1
Show newest version
package sttp.client3.internal.httpclient

/** Ensures that given effects are always run in sequence. */
private[client3] trait Sequencer[F[_]] {
  def apply[T](t: => F[T]): F[T]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy