Packages

class Resource extends Component

The Resource class provides services to entities (SimActors). It may or may not have an associated waiting queue.

Linear Supertypes
Component, Locatable, Identifiable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Resource
  2. Component
  3. Locatable
  4. Identifiable
  5. Error
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Resource(name: String, line: WaitQueue, units: Int, serviceTime: Variate, xy: (Double, Double))

    Auxiliary constructor that uses defaults for width 'w' and height 'h'.

    Auxiliary constructor that uses defaults for width 'w' and height 'h'.

    name

    the name of the resource

    line

    the line/queue where entities wait

    units

    the number of service units (e.g., bank tellers)

    serviceTime

    the service time distribution

    xy

    the (x, y) coordinates for the top-left corner of the resource.

  2. new Resource(name: String, line: WaitQueue, units: Int, serviceTime: Variate, at: Array[Double])

    name

    the name of the resource

    line

    the line/queue where entities wait

    units

    the number of service units (e.g., bank tellers)

    serviceTime

    the service time distribution

    at

    the location of the resource (x, y, w, h)

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. val DIAM: Double

    Diameter of a token (for animating entities)

    Diameter of a token (for animating entities)

    Definition Classes
    Component
  5. val RAD: Double

    Radius of a token (for animating entities)

    Radius of a token (for animating entities)

    Definition Classes
    Component
  6. def accum(value: Double): Unit

    Accumulate the value (e.g., number in queue) weighted by its time duration.

    Accumulate the value (e.g., number in queue) weighted by its time duration.

    value

    the value to accumulate

    Definition Classes
    Component
  7. def aggregate(): Unit

    Aggregate the statistics of this component's subparts.

    Aggregate the statistics of this component's subparts.

    Definition Classes
    Component
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def at: Array[Double]
    Definition Classes
    Locatable
  10. def at_=(at: Array[Double]): Unit
    Definition Classes
    Locatable
  11. def busy: Boolean

    Determine whether 'this' resource is busy (no units available).

  12. def changeUnits(dUnits: Int): Unit

    Change the number of units in 'this' resource (e.g., add a teller).

    Change the number of units in 'this' resource (e.g., add a teller).

    dUnits

    the number of units to add (+ve) or remove (-ve)

  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  14. def composite: Boolean

    Indicate whether this component is composite, i.e., has subparts.

    Indicate whether this component is composite, i.e., has subparts.

    Definition Classes
    Component
  15. def director: Model

    Get the director who controls the play/simulation this component is in.

    Get the director who controls the play/simulation this component is in.

    Definition Classes
    Component
  16. def director_=(director: Model): Unit

    Set this component's director (the controller of the simulation model).

    Set this component's director (the controller of the simulation model).

    director

    the director of the play/simulation

    Definition Classes
    Component
  17. def display(): Unit

    Tell the animation engine to display 'this' resource.

    Tell the animation engine to display 'this' resource.

    Definition Classes
    ResourceComponent
  18. def durationStat: Statistic

    Return sample statistics for durations for this component (e.g., Time in queue).

    Return sample statistics for durations for this component (e.g., Time in queue).

    Definition Classes
    Component
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(that: Any): Boolean
    Definition Classes
    Identifiable → AnyRef → Any
  21. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int
    Definition Classes
    Identifiable → AnyRef → Any
  24. val id: Int
    Definition Classes
    Identifiable
  25. def initComponent(label: String, loc: Array[Double]): Unit

    Initialize this component (all of its 'var's).

    Initialize this component (all of its 'var's).

    label

    the name of this component

    loc

    the location of this component

    Definition Classes
    Component
  26. def initStats(label: String): Unit

    Initialize this component's statistical collectors.

    Initialize this component's statistical collectors. Sample statistics: all Components. Time-persistent statistics: all except Gate, Source and Sink.

    label

    the name of this component

    Definition Classes
    Component
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def me: String
    Definition Classes
    Identifiable
  29. def name: String
    Definition Classes
    Identifiable
  30. def name_=(name: String): Unit
    Definition Classes
    Identifiable
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def persistentStat: TimeStatistic

    Return time persistent statistics for value for this component (e.g.

    Return time persistent statistics for value for this component (e.g. Number in queue).

    Definition Classes
    Component
  35. def release(): Unit

    Release 'this' resource after service is finished (also check wait-queue).

  36. def simType: String
    Definition Classes
    Identifiable
  37. val subpart: ListBuffer[Component]

    List of subparts of the Component (empty for atomic components, nonempty for composites)

    List of subparts of the Component (empty for atomic components, nonempty for composites)

    Definition Classes
    Component
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def tally(duration: Double): Unit

    Tally the duration (e.g., waiting time) of an activity or delay.

    Tally the duration (e.g., waiting time) of an activity or delay.

    duration

    the time duration

    Definition Classes
    Component
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def utilize(duration: Double): Unit

    Utilize 'this' resource for a given period of time (models an activity).

    Utilize 'this' resource for a given period of time (models an activity).

    duration

    the given service time

  42. def utilize(): Unit

    Utilize 'this' resource for a period of time (models an activity).

    Utilize 'this' resource for a period of time (models an activity). The duration (service time) is randomly generated according to the resource's service time distribution.

  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from Component

Inherited from Locatable

Inherited from Identifiable

Inherited from Error

Inherited from AnyRef

Inherited from Any

Ungrouped