scalation.process

SimActor

abstract class SimActor extends Coroutine with PQItem with Ordered[SimActor] with Locatable

The SimActor abstract class represents entities that are active in the model. The 'act' abstract method, which specifies entity behavior, must be defined for each subclass. Each SimActor extends Scala's Actor class and may be roughly thought of as running in its own thread.

Linear Supertypes
Locatable, Ordered[SimActor], Comparable[SimActor], PQItem, Identifiable, Error, Coroutine, Actor, ReplyReactor, InternalActor, Serializable, Serializable, InputChannel[Any], ActorCanReply, InternalReplyReactor, ReactorCanReply, Reactor[Any], Combinators, AbstractActor, CanReply[Any, Any], OutputChannel[Any], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SimActor
  2. Locatable
  3. Ordered
  4. Comparable
  5. PQItem
  6. Identifiable
  7. Error
  8. Coroutine
  9. Actor
  10. ReplyReactor
  11. InternalActor
  12. Serializable
  13. Serializable
  14. InputChannel
  15. ActorCanReply
  16. InternalReplyReactor
  17. ReactorCanReply
  18. Reactor
  19. Combinators
  20. AbstractActor
  21. CanReply
  22. OutputChannel
  23. AnyRef
  24. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimActor(name: String, director: Model)

    name

    the name of the entity/SimActor

    director

    the director controlling the model

Type Members

  1. type Future[+P] = scala.actors.Future[P]

    Definition Classes
    ReactorCanReply → CanReply

Abstract Value Members

  1. abstract def act(): Unit

    The abstract method, act, is defined in each subclass to provide specific behavior.

    The abstract method, act, is defined in each subclass to provide specific behavior.

    Definition Classes
    SimActor → Reactor

Concrete Value Members

  1. def !(msg: Any): Unit

    Definition Classes
    InternalReplyReactor → Reactor → OutputChannel
  2. def !!(msg: Any): Future[Any]

    Definition Classes
    ActorCanReply → ReactorCanReply → CanReply
  3. def !![A](msg: Any, handler: PartialFunction[Any, A]): Future[A]

    Definition Classes
    ActorCanReply → ReactorCanReply → CanReply
  4. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  5. def !?(msec: Long, msg: Any): Option[Any]

    Definition Classes
    ActorCanReply → ReactorCanReply → CanReply
  6. def !?(msg: Any): Any

    Definition Classes
    ActorCanReply → ReactorCanReply → CanReply
  7. final def ##(): Int

    Definition Classes
    AnyRef → Any
  8. def <(that: SimActor): Boolean

    Definition Classes
    Ordered
  9. def <=(that: SimActor): Boolean

    Definition Classes
    Ordered
  10. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def >(that: SimActor): Boolean

    Definition Classes
    Ordered
  12. def >=(that: SimActor): Boolean

    Definition Classes
    Ordered
  13. def ?: Any

    Definition Classes
    InternalActor → InputChannel
  14. var actTime: Double

    The activation time for the item in the time-ordered priority queue

    The activation time for the item in the time-ordered priority queue

    Definition Classes
    PQItem
  15. val arrivalT: Double

    The time at which the entity/sim-actor arrived

  16. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  17. def at: Array[Double]

    Return where this object is at (its location).

    Return where this object is at (its location).

    Definition Classes
    Locatable
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def compare(actor2: SimActor): Int

    Compare the activation times of the two actors, 'this' and 'actror2'.

    Compare the activation times of the two actors, 'this' and 'actror2'. Their activation times are used to order them in the director's agenda (a time-based priority queue).

    actor2

    the other actor to compare with this

    Definition Classes
    SimActor → Ordered
  20. def compare(other: PQItem): Int

    Compare two items (PQItems) based on their actTime.

    Compare two items (PQItems) based on their actTime.

    other

    the other item to compare with this item

    Definition Classes
    PQItem
  21. def compareTo(that: SimActor): Int

    Definition Classes
    Ordered → Comparable
  22. def continue(): Unit

    Definition Classes
    Combinators
  23. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  25. def exceptionHandler: PartialFunction[Exception, Unit]

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  26. def exit(): Nothing

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalActor → Reactor
  27. def exit(reason: AnyRef): Nothing

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalActor
  28. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. 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
  30. def forward(msg: Any): Unit

    Definition Classes
    InternalReplyReactor → Reactor → OutputChannel
  31. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  32. def getState: scala.actors.Actor.State.Value

    Definition Classes
    InternalActor → InternalReplyReactor → Reactor
  33. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  34. def id: Int

    Get the id (unique identifier).

    Get the id (unique identifier).

    Definition Classes
    Identifiable
  35. def internalSender: OutputChannel[Any]

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalReplyReactor
  36. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  37. def link(body: ⇒ Unit): Actor

    Definition Classes
    InternalActor
  38. def link(to: ActorRef): ActorRef

    Definition Classes
    InternalActor
  39. def link(to: AbstractActor): AbstractActor

    Definition Classes
    InternalActor
  40. def loop(body: ⇒ Unit): Unit

    Definition Classes
    Combinators
  41. def loopWhile(cond: ⇒ Boolean)(body: ⇒ Unit): Unit

    Definition Classes
    Combinators
  42. def mailboxSize: Int

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  43. def me: String

    Return the full identity.

    Return the full identity.

    Definition Classes
    Identifiable
  44. implicit def mkBody[A](body: ⇒ A): Body[A]

    Definition Classes
    Reactor → Combinators
  45. def name: String

    Get the name.

    Get the name.

    Definition Classes
    Identifiable
  46. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  49. def react(handler: PartialFunction[Any, Unit]): Nothing

    Definition Classes
    InternalActor → InputChannel → InternalReplyReactor → Reactor
  50. def reactWithin(msec: Long)(handler: PartialFunction[Any, Unit]): Nothing

    Definition Classes
    InternalActor → InputChannel → InternalReplyReactor
  51. def receive[R](f: PartialFunction[Any, R]): R

    Definition Classes
    InternalActor → InputChannel
  52. def receiveWithin[R](msec: Long)(f: PartialFunction[Any, R]): R

    Definition Classes
    InternalActor → InputChannel
  53. def receiver: Actor

    Definition Classes
    Reactor → OutputChannel
  54. def reply(msg: Any): Unit

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalReplyReactor
  55. def restart(): Unit

    Definition Classes
    Reactor
  56. def schedule(delay: Double): Unit

    Schedule a reactivation of this SimActor delay time units in the future.

    Schedule a reactivation of this SimActor delay time units in the future.

    delay

    the time delay before reactivation

  57. def scheduler: IScheduler

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalActor → Reactor
  58. def send(msg: Any, replyTo: OutputChannel[Any]): Unit

    Definition Classes
    Reactor → OutputChannel
  59. def sender: OutputChannel[Any]

    Attributes
    protected[scala.actors]
    Definition Classes
    ReplyReactor
  60. def setAt(loc: Array[Double]): Unit

    Set the location of this object.

    Set the location of this object.

    loc

    the location of this object

    Definition Classes
    Locatable
  61. def setName(label: String): Unit

    Set the name.

    Set the name.

    label

    the name to assign

    Definition Classes
    Identifiable
  62. def setSubtype(subtype: Int): Unit

    Set the sim-actor's subtype.

    Set the sim-actor's subtype.

    subtype

    the sim-actors subtype

  63. def setTrajectory(t: Double): Unit

    Set the value of the trajectory along the curve for this SimActor.

    Set the value of the trajectory along the curve for this SimActor.

    t

    the new trajectory for the SimActor

  64. def simType: String

    Get the type of the simulation object.

    Get the type of the simulation object.

    Definition Classes
    Identifiable
  65. def start(): Coroutine

    Start this coroutine, i.

    Start this coroutine, i.e., invoke its 'act' method.

    Definition Classes
    Coroutine → Actor → InternalActor → Reactor
  66. def subtype: Int

    Return the sim-actor's subtype.

  67. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  68. def toString(): String

    Show the SimActor's full name and activation time.

    Show the SimActor's full name and activation time.

    Definition Classes
    SimActorPQItem → AnyRef → Any
  69. def trajectory: Double

    Return the current trajectory (along the Qcurve) of this SimActor.

  70. def trapExit: Boolean

    Definition Classes
    InternalActor
  71. def trapExit_=(value: Boolean): Unit

    Definition Classes
    InternalActor
  72. def unlink(from: ActorRef): Unit

    Definition Classes
    InternalActor
  73. def unlink(from: AbstractActor): Unit

    Definition Classes
    InternalActor
  74. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  77. def yieldToDirector(quit: Boolean = false): Unit

    Yield control to the director so the director can take the next action.

    Yield control to the director so the director can take the next action.

    quit

    the flag indicating whether this actor is done

  78. def yyield(other: Coroutine, quit: Boolean = false): Unit

    Yield control to the 'other' coroutine.

    Yield control to the 'other' coroutine.

    other

    the other coroutine to yield control to

    quit

    whether to wait via a receive or quit via exit

    Definition Classes
    Coroutine

Inherited from Locatable

Inherited from Ordered[SimActor]

Inherited from Comparable[SimActor]

Inherited from PQItem

Inherited from Identifiable

Inherited from Error

Inherited from Coroutine

Inherited from Actor

Inherited from ReplyReactor

Inherited from InternalActor

Inherited from Serializable

Inherited from Serializable

Inherited from InputChannel[Any]

Inherited from ActorCanReply

Inherited from InternalReplyReactor

Inherited from ReactorCanReply

Inherited from Reactor[Any]

Inherited from Combinators

Inherited from AbstractActor

Inherited from CanReply[Any, Any]

Inherited from OutputChannel[Any]

Inherited from AnyRef

Inherited from Any

Ungrouped