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

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

The newest version!
package sttp.client3.httpclient

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy