c

com.workflowfm.pew

PiFuture

case class PiFuture(fun: String, outChan: Chan, args: Seq[PiResource]) extends Product with Serializable

Represents a pending call to an atomic process in 2 situations: 1) A call has been encountered in the workflow, but we are waiting for the inputs to arrive. 2) The inputs have arrived, we have made the call to the actual process, and we are waiting for it to return.

fun

the name of the process

outChan

the channel through which we should send the output when it arrives

args

the process inputs, each including a pattern of the input and the corresponding channel it will arrive through

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PiFuture
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. 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 PiFuture(fun: String, outChan: Chan, args: Seq[PiResource])

    fun

    the name of the process

    outChan

    the channel through which we should send the output when it arrives

    args

    the process inputs, each including a pattern of the input and the corresponding channel it will arrive through

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from PiFuture to any2stringadd[PiFuture] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PiFuture, B)
    Implicit
    This member is added by an implicit conversion from PiFuture to ArrowAssoc[PiFuture] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val args: Seq[PiResource]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def ensuring(cond: (PiFuture) ⇒ Boolean, msg: ⇒ Any): PiFuture
    Implicit
    This member is added by an implicit conversion from PiFuture to Ensuring[PiFuture] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (PiFuture) ⇒ Boolean): PiFuture
    Implicit
    This member is added by an implicit conversion from PiFuture to Ensuring[PiFuture] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): PiFuture
    Implicit
    This member is added by an implicit conversion from PiFuture to Ensuring[PiFuture] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): PiFuture
    Implicit
    This member is added by an implicit conversion from PiFuture to Ensuring[PiFuture] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def execute(m: ChanMap): Option[PiFuture]

    We call this to check if all inputs have arrived and we can execute the process.

    We call this to check if all inputs have arrived and we can execute the process.

    returns

    an instantiated instance where all inputs are ground so we can make the call to the actual process, or None if not all inputs have arrived

  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from PiFuture to StringFormat[PiFuture] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. val fun: String
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. val outChan: Chan
  24. def sub(s: ChanMap): PiFuture
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toOutput(res: PiObject): Output

    We call this once the process output has arrived, to create the appropriate Output pi-calculus term.

  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  30. def [B](y: B): (PiFuture, B)
    Implicit
    This member is added by an implicit conversion from PiFuture to ArrowAssoc[PiFuture] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PiFuture to any2stringadd[PiFuture]

Inherited by implicit conversion StringFormat from PiFuture to StringFormat[PiFuture]

Inherited by implicit conversion Ensuring from PiFuture to Ensuring[PiFuture]

Inherited by implicit conversion ArrowAssoc from PiFuture to ArrowAssoc[PiFuture]

Ungrouped