Packages

final case class Logger[F[_], A](log: (A) ⇒ F[Unit]) extends Product with Serializable

Self Type
Logger[F, A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(log: (A) ⇒ F[Unit])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *<[B](fb: Logger[F, B])(implicit F: Applicative[F], ev: =:=[Unit, A]): Logger[F, B]
  4. def <&(msg: A): F[Unit]
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def =>>(f: (Logger[F, A]) ⇒ F[Unit])(implicit S: Semigroup[A]): Logger[F, A]
  7. def >*(fu: Logger[F, Unit])(implicit F: Applicative[F]): Logger[F, A]
  8. def >*<[B](fb: Logger[F, B])(implicit F: Applicative[F]): Logger[F, (A, B)]
  9. def >::[B](a: A): Logger[F, B]
  10. def >|<[B](fb: Logger[F, B]): Logger[F, Either[A, B]]
    Annotations
    @inline()
  11. def apply(msg: A): F[Unit]
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def async(ec: ExecutionContext)(implicit F: Async[F], CS: ContextShift[F]): Logger[F, A]
  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def extend(f: (Logger[F, A]) ⇒ F[Unit])(implicit S: Semigroup[A]): Logger[F, A]
  17. def extract(implicit M: Monoid[A]): F[Unit]
  18. def filter(f: (A) ⇒ Boolean)(implicit F: Applicative[F]): Logger[F, A]
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatWith[B](f: (B) ⇒ A): Logger[F, B]
  21. def formatWithF[B](f: (B) ⇒ F[A])(implicit F: FlatMap[F]): Logger[F, B]
  22. def formatWithOption[B](f: (B) ⇒ Option[A])(implicit F: Applicative[F]): Logger[F, B]
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def lift[G[_]](implicit G: FunctorLayer[G, F]): Logger[G, A]
  26. val log: (A) ⇒ F[Unit]
  27. def mapK[G[_]](f: ~>[F, G]): Logger[G, A]
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def or[B, C](other: Logger[F, B])(f: (C) ⇒ Either[A, B]): Logger[F, C]
  32. def orElse[B](fb: Logger[F, B]): Logger[F, Either[A, B]]
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def timestampedWith[B](f: (Timestamped[B]) ⇒ A)(implicit F: Sync[F], timer: Timer[F]): Logger[F, B]
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped