Packages

case class Entity(iArrivalT: Double, serviceT: Double, director: Model) extends Product with Serializable

The Entity class represents a single simulation entity for event-scheduling simulation.

iArrivalT

the time from the last arrival

serviceT

the amount of time required for the entity's next service

director

the controller/scheduler that this event is a part of

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

Instance Constructors

  1. new Entity(iArrivalT: Double, serviceT: Double, director: Model)

    iArrivalT

    the time from the last arrival

    serviceT

    the amount of time required for the entity's next service

    director

    the controller/scheduler that this event is a part of

Value Members

  1. val arrivalT: Double

    the time at which the entity arrived

  2. val director: Model
  3. val eid: Int

    the entity id

  4. val iArrivalT: Double
  5. var serviceT: Double
  6. var startWait: Double

    the time at which waiting started

  7. def toString(): String

    Convert the entity to a string

    Convert the entity to a string

    Definition Classes
    Entity → AnyRef → Any