Trait

it.unibo.scafi.lib.StdLib_Processes

Processes

Related Doc: package StdLib_Processes

Permalink

trait Processes extends AnyRef

Self Type
(StdLib_Processes.this)#Processes with (StdLib_Processes.this)#FieldCalculusSyntax with (StdLib_Processes.this)#StandardSensors with (StdLib_Processes.this)#FieldUtils
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Processes
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ProcessData[+T](value: Option[T] = None, gen: Boolean = false, stop: Boolean = false, counter: Option[Long] = None, distance: Double = Double.PositiveInfinity, staleValue: Long = 0) extends Product with Serializable

    Permalink

    Process data

    Process data

    T

    the type of the output of the process computation

    value

    Value resulting from the process computation

    gen

    Flag indicating if the data belongs to the generator of the process instance

    stop

    Flag indicating if the process is being stopped

    counter

    Counter indicating progress in process instance execution

    distance

    Distance from the source (i.e., the generator) of the process instance

    staleValue

    Values representing how many rounds/time have passed without seeing a new counter value

  2. case class ProcessDef[+T](pid: (StdLib_Processes.this)#PID, comp: () ⇒ T, stopCondition: () ⇒ Boolean = () => false, limit: Double = Double.PositiveInfinity, metric: () ⇒ Double = nbrRange, timeGC: Long = TimeGC) extends Product with Serializable

    Permalink

    Process definition.

    Process definition. A process has:

    T

    the type of the output of the process computation

    comp

    a behaviour (process logic)

    limit

    a maximum spatial extension

    metric

    a metric used to calculate its spatial extension

    timeGC

    a time value for garbage-collection

  3. case class ProcessGenerator[T](trigger: () ⇒ Boolean, generator: () ⇒ (Processes.this)#ProcessDef[T]) extends Product with Serializable

    Permalink
  4. case class ProcessInstance[T](puid: (StdLib_Processes.this)#PUID, process: (Processes.this)#ProcessDef[T], data: (Processes.this)#ProcessData[T] = ProcessData[T]()) extends Product with Serializable

    Permalink

    Process instance

    Process instance

    T

    the type of the output of the process computation

    puid

    UID for the process instance

    process

    The process from which this instance comes from

    data

    Data associated with this process instance

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. val TimeGC: Long

    Permalink
  5. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  15. def processExecution[T](generators: Set[(Processes.this)#ProcessGenerator[T]]): Map[(StdLib_Processes.this)#PUID, T]

    Permalink
  16. def processExecution[T](generators: (Processes.this)#ProcessGenerator[T]*): Map[(StdLib_Processes.this)#PUID, T]

    Permalink
  17. def processManagement[T](generators: Set[(Processes.this)#ProcessGenerator[T]]): Map[(StdLib_Processes.this)#PUID, (Processes.this)#ProcessInstance[T]]

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

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

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

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

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

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

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 AnyRef

Inherited from Any

Ungrouped