Object

com.ccadllc.cedi.dtrace

TraceIO

Related Doc: package dtrace

Permalink

object TraceIO

Companion to the TraceIO[A] type alias - provides the TraceT smart constructors with the effectful program F fixed as IO.

Source
dtrace.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraceIO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[A](a: ⇒ A): TraceIO[A]

    Permalink

    Lifts the non-strict, possibly impure expression computing A into a TraceIO[A] context.

    Lifts the non-strict, possibly impure expression computing A into a TraceIO[A] context.

    a

    - the non-strict expression computing A to lift into a TraceIO context.

    returns

    a non-strict expression which computes A lifted into a TraceIO.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def ask: TraceIO[TraceContext[IO]]

    Permalink

    Ask for the current TraceContext[IO] in a TraceIO.

    Ask for the current TraceContext[IO] in a TraceIO.

    returns

    a TraceContext[IO] wrapped in a TraceIO.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def pure[A](a: A): TraceIO[A]

    Permalink

    Lifts a value A into a TraceIO[A] context.

    Lifts a value A into a TraceIO[A] context.

    a

    - the pure value A to lift into a TraceIO context.

    returns

    a pure value A wrapped in a TraceIO.

  18. def raiseError[A](t: Throwable): TraceIO[A]

    Permalink

    Creates a failed TraceIO.

    Creates a failed TraceIO.

    t

    - the Throwable with which to fail the underlying program.

    returns

    the TraceIO[A] in a failed state.

  19. def suspend[A](t: ⇒ IO[A]): TraceIO[A]

    Permalink

    Lifts the non-strict, possibly impure expression computing a TraceIO[A] into a TraceIO[A] The expression is suspended until the outer TraceIO returned is run.

    Lifts the non-strict, possibly impure expression computing a TraceIO[A] into a TraceIO[A] The expression is suspended until the outer TraceIO returned is run.

    t

    - the non-strict expression computing TraceIO[A] to lift into a TraceIO context suspended until the outer TraceIO is run.

    returns

    a non-strict expression which computes TraceIO[A] lifted into a TraceIO in a suspended state until the outer TraceIO is run.

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. def toTraceIO[A](io: IO[A]): TraceIO[A]

    Permalink
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped