scalation.process

Resource

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, Identity, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Resource
  2. Component
  3. Identity
  4. Error
  5. AnyRef
  6. Any
Visibility
  1. Public
  2. All

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

    xy

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

  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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val DIAM: Double

    Diameter of a token (for animating entities)

    Diameter of a token (for animating entities)

    Definition Classes
    Component
  7. val RAD: Double

    Radius of a token (for animating entities)

    Radius of a token (for animating entities)

    Definition Classes
    Component
  8. def accumulate(value: Double, time: Double): Unit

    Accumulate the value (e.

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

    value

    the value to accumulate

    time

    the current time of the observation

    Definition Classes
    Component
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def busy: Boolean

    Determine whether the Resource is busy (no units available).

  11. def changeUnits(dUnits: Int): Unit

    Change the number of units in this resourse (e.

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

    dUnits

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

  12. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def director: Model

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

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

    Definition Classes
    Component
  14. def display(): Unit

    Tell the animation engine to display this Resource.

    Tell the animation engine to display this Resource.

    Definition Classes
    ResourceComponent
  15. def durationStat: Statistic

    Return sample statistics for durations for this component (e.

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

    Definition Classes
    Component
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  20. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. def id: Int

    Get the id (unique identifier).

    Get the id (unique identifier).

    Definition Classes
    Identity
  23. def initComponent(label: String, loc: Array[Double]): Unit

    Initialize this component (all of its vars).

    Initialize this component (all of its vars).

    label

    the name of this component

    loc

    the location of this component

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

    Initialize this component's statistical collectors.

    Initialize this component's statistical collectors.

    label

    the name of this component

    Definition Classes
    Component
  25. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  26. def me: String

    Return the full identity.

    Return the full identity.

    Definition Classes
    Identity
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def persistentStat: TimeStatistic

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

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

    Definition Classes
    Component
  31. def release(): Unit

    Release the Resource after service is finished (also check waiting queue).

  32. def setAt(loc: Array[Double]): Unit

    Set the location of this component.

    Set the location of this component.

    loc

    the location of this component

    Definition Classes
    Component
  33. def setDirector(dir: Model): Unit

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

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

    dir

    the director of the play/simulation

    Definition Classes
    Component
  34. def setName(label: String): Unit

    Set the name.

    Set the name.

    label

    the name to assign

    Definition Classes
    Identity
  35. def simType: String

    Get the type of the simulation object.

    Get the type of the simulation object.

    Definition Classes
    Identity
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def tally(duration: Double): Unit

    Tally the duration (e.

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

    duration

    the time duration

    Definition Classes
    Component
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. def utilize(duration: Double): Unit

    Utilize the Resource for a given period of time (models an activity).

    Utilize the Resource for a given period of time (models an activity).

    duration

    the given service time

  40. def utilize(): Unit

    Utilize the Resource for a period of time (models an activity).

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

  41. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  42. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  43. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Component

Inherited from Identity

Inherited from Error

Inherited from AnyRef

Inherited from Any