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

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

There is a newer version: 4.0.0-M19
Show newest version
package sttp.client4.internal.httpclient

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy