Class

com.tersesystems.blindsight.flow

SimpleFlowBehavior

Related Doc: package flow

Permalink

class SimpleFlowBehavior[B] extends FlowBehavior[B]

A simple flow behavior that prints out the arguments and result, with the line number.

B

the type of the result.

Source
SimpleFlowBehavior.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleFlowBehavior
  2. FlowBehavior
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleFlowBehavior()(implicit arg0: ToArgument[B])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to any2stringadd[SimpleFlowBehavior[B]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SimpleFlowBehavior[B], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to ArrowAssoc[SimpleFlowBehavior[B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensuring(cond: (SimpleFlowBehavior[B]) ⇒ Boolean, msg: ⇒ Any): SimpleFlowBehavior[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to Ensuring[SimpleFlowBehavior[B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (SimpleFlowBehavior[B]) ⇒ Boolean): SimpleFlowBehavior[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to Ensuring[SimpleFlowBehavior[B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): SimpleFlowBehavior[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to Ensuring[SimpleFlowBehavior[B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): SimpleFlowBehavior[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to Ensuring[SimpleFlowBehavior[B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def entryMarkers(source: Source): Markers

    Permalink

    Returns the markers used by the flow logger method on entry.

    Returns the markers used by the flow logger method on entry.

    source

    the source info

    returns

    the entry markers, empty by default.

    Definition Classes
    FlowBehavior
  13. def entryStatement(source: Source): Option[Statement]

    Permalink

    Creates an entry statement, if specified.

    Creates an entry statement, if specified.

    source

    the source info

    returns

    the entry statement, None by default.

    Definition Classes
    SimpleFlowBehaviorFlowBehavior
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def exitMarkers(source: Source): Markers

    Permalink

    Provides exit markers for the predicate.

    Provides exit markers for the predicate.

    source

    the source info

    returns

    exit markers, empty by default.

    Definition Classes
    FlowBehavior
  17. def exitStatement(resultValue: B, source: Source): Option[Statement]

    Permalink

    Returns an exit statement, using the result value and the source.

    Returns an exit statement, using the result value and the source.

    resultValue

    the result of the flow.

    source

    the source info

    returns

    the statement, None by default.

    Definition Classes
    SimpleFlowBehaviorFlowBehavior
  18. def findArgs(source: Source): String

    Permalink
    Attributes
    protected
  19. def findPos(source: Source): String

    Permalink
    Attributes
    protected
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to StringFormat[SimpleFlowBehavior[B]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def throwingStatement(throwable: Throwable, source: Source): Option[(Level, Statement)]

    Permalink

    Returns a tuple describing the statement and the level to log the exception at; if you return (Level.ERROR, statement) then it will log the exception at error level, for example.

    Returns a tuple describing the statement and the level to log the exception at; if you return (Level.ERROR, statement) then it will log the exception at error level, for example.

    source

    the source info

    returns

    a tuple containing the statement and the level to execute the throwing statement.

    Definition Classes
    SimpleFlowBehaviorFlowBehavior
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def [B](y: B): (SimpleFlowBehavior[B], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from SimpleFlowBehavior[B] to ArrowAssoc[SimpleFlowBehavior[B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from FlowBehavior[B]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SimpleFlowBehavior[B] to any2stringadd[SimpleFlowBehavior[B]]

Inherited by implicit conversion StringFormat from SimpleFlowBehavior[B] to StringFormat[SimpleFlowBehavior[B]]

Inherited by implicit conversion Ensuring from SimpleFlowBehavior[B] to Ensuring[SimpleFlowBehavior[B]]

Inherited by implicit conversion ArrowAssoc from SimpleFlowBehavior[B] to ArrowAssoc[SimpleFlowBehavior[B]]

Ungrouped