scalation

event

package event

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

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. event
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

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

    The CausalLink class provides casual links between events.

  2. 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.

  3. abstract class Event extends Identifiable with Ordered[Event]

    The Event class provides facilities for defining simulation events.

  4. class EventNode extends Event

    The EventNode class provides facilities for representing simulation events graphically.

  5. class Model extends Modelable with Identifiable

    The Model class schedules events and implements the time advance mechanism for simulation model following the event-scheduling world view.

  6. case class WaitQueue(director: Model, ext: String = "", cap: Int = scala.Int.MaxValue) extends Queue[Entity] with Product with Serializable

    The WaitQueue class is used to hold entities waiting for service and collect statistics on waiting times.

Value Members

  1. object Entity extends Serializable

    The Entity companion object provides a counter for generating entity ids.

  2. object EventNode

    The EventNode companion object provides a method for making a prototype entity.

  3. object ModelTest extends App

    The ModelTest object is used to test the Model class.

Inherited from AnyRef

Inherited from Any

Ungrouped