Packages

  • package root
    Definition Classes
    root
  • package scalation

    The scalation package specifies system-wide constants for directory paths.

    The scalation package specifies system-wide constants for directory paths. Sub-packages may wish to define 'BASE-DIR = DATA_DIR + ⁄ + <package>' in their own 'package.scala' files. For maintainability, directory paths should only be specified in 'package.scala' files.

    Definition Classes
    root
  • package event

    The event package contains classes, traits and objects for event oriented simulation models (for example, event scheduling or event graphs).

    The event package contains classes, traits and objects for event oriented simulation models (for example, event scheduling or event graphs).

    Definition Classes
    scalation
  • CausalLink
  • Entity
  • Event
  • EventNode
  • Model
  • ModelTest
  • WaitQueue
c

scalation.event

CausalLink

case class CausalLink(label: String, director: Model, condition: () ⇒ Boolean, causedEvent: Event) extends Identifiable with Product with Serializable

The CausalLink class provides casual links between events. A causal link indicates that a "causing event" (from node) conditionally may triggers a "caused event" (to node).

label

the name/label of the causal link

director

the controller/scheduler that this causal link is a part of

condition

the condition under which the link is triggered

causedEvent

the event caused by this causal link

Linear Supertypes
Serializable, Serializable, Product, Equals, Identifiable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CausalLink
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Identifiable
  7. Error
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CausalLink(label: String, director: Model, condition: () ⇒ Boolean, causedEvent: Event)

    label

    the name/label of the causal link

    director

    the controller/scheduler that this causal link is a part of

    condition

    the condition under which the link is triggered

    causedEvent

    the event caused by this causal link

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val causedEvent: Event
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val condition: () ⇒ Boolean
  8. val director: Model
  9. def display(from: Event, to: Event): Unit

    Tell the animation engine to display this CausalLink.

    Tell the animation engine to display this CausalLink.

    from

    the starting event prototype

    to

    the ending event prototype

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(that: Any): Boolean

    Determine whether Identifiable object 'this' equals Identifiable object 'that'.

    Determine whether Identifiable object 'this' equals Identifiable object 'that'. Works since 'id' is unique for all Identifiable objects.

    Definition Classes
    Identifiable → AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Return the hashCode as the unique id.

    Return the hashCode as the unique id.

    Definition Classes
    Identifiable → AnyRef → Any
  16. val id: Int

    The globally unique integer identifier

    The globally unique integer identifier

    Definition Classes
    Identifiable
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. val label: String
  19. def me: String

    Return the full identity.

    Return the full identity.

    Definition Classes
    Identifiable
  20. def name: String

    Get the name.

    Get the name.

    Definition Classes
    Identifiable
  21. def name_=(name: String): Unit

    Set the name.

    Set the name.

    name

    the name to assign

    Definition Classes
    Identifiable
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  25. def simType: String

    Get the type of the simulation object.

    Get the type of the simulation object.

    Definition Classes
    Identifiable
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String

    Convert the causal link to a string.

    Convert the causal link to a string.

    Definition Classes
    CausalLink → AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Identifiable

Inherited from Error

Inherited from AnyRef

Inherited from Any

Ungrouped