Packages

  • package root
    Definition Classes
    root
  • package apps
    Definition Classes
    root
  • package event

    The event package contains example applications for event oriented simulation models.

    The event package contains example applications for event oriented simulation models.

    Definition Classes
    apps
  • class MachineModel extends Model

    The MachineModel class defines an Event-Scheduling model of a two-stage manufacturing process, which consists of two machines in series M1 and M2.

    The MachineModel class defines an Event-Scheduling model of a two-stage manufacturing process, which consists of two machines in series M1 and M2.

    Definition Classes
    event
  • Arrival
  • Departure_M1
  • Departure_M2
c

apps.event.MachineModel

Departure_M1

case class Departure_M1(part: Entity, delay: Double) extends Event with Product with Serializable

Departure_M1 is a subclass of Event for handling departure events from machine M1. The 'occur' method triggers future events and updates the current state.

part

the entity that departs, in this case a part

delay

the time delay for this event's occurrence

Linear Supertypes
Serializable, Serializable, Product, Equals, Event, Ordered[Event], Comparable[Event], Identifiable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Departure_M1
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Event
  7. Ordered
  8. Comparable
  9. Identifiable
  10. Error
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Departure_M1(part: Entity, delay: Double)

    part

    the entity that departs, in this case a part

    delay

    the time delay for this event's occurrence

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def <(that: Event): Boolean
    Definition Classes
    Ordered
  4. def <=(that: Event): Boolean
    Definition Classes
    Ordered
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >(that: Event): Boolean
    Definition Classes
    Ordered
  7. def >=(that: Event): Boolean
    Definition Classes
    Ordered
  8. val actTime: Double
    Definition Classes
    Event
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def cancel(): Unit
    Definition Classes
    Event
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  12. def compare(ev: Event): Int
    Definition Classes
    Event → Ordered
  13. def compareTo(that: Event): Int
    Definition Classes
    Ordered → Comparable
  14. val delay: Double
  15. val entity: Entity
    Definition Classes
    Event
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(that: Any): Boolean
    Definition Classes
    Identifiable → AnyRef → Any
  18. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def hashCode(): Int
    Definition Classes
    Identifiable → AnyRef → Any
  21. val id: Int
    Definition Classes
    Identifiable
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def live: Boolean
    Definition Classes
    Event
  24. def me: String
    Definition Classes
    Identifiable
  25. def name: String
    Definition Classes
    Identifiable
  26. def name_=(name: String): Unit
    Definition Classes
    Identifiable
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def occur(): Unit
    Definition Classes
    Departure_M1 → Event
  31. val part: Entity
  32. val proto: EventNode
    Definition Classes
    Event
  33. def simType: String
    Definition Classes
    Identifiable
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    Event → AnyRef → Any
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Event

Inherited from Ordered[Event]

Inherited from Comparable[Event]

Inherited from Identifiable

Inherited from Error

Inherited from AnyRef

Inherited from Any

Ungrouped