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
Ordering
- Alphabetic
- By Inheritance
Inherited
- Entity
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
-
val
arrivalT: Double
the time at which the entity arrived
- val director: Model
-
val
eid: Int
the entity id
- val iArrivalT: Double
- var serviceT: Double
-
var
startWait: Double
the time at which waiting started
-
def
toString(): String
Convert the entity to a string
Convert the entity to a string
- Definition Classes
- Entity → AnyRef → Any