scala.swing

SwingWorker

class SwingWorker extends Actor

attributes: abstract

Inherits

  1. Actor
  2. ReplyableActor
  3. ReplyReactor
  4. ReplyableReactor
  5. Reactor
  6. AbstractActor
  7. Replyable
  8. OutputChannel
  9. AbstractReactor
  10. AnyRef
  11. Any

Value Members

  1. def !(msg: Any): Unit

    Sends msg to this actor (asynchronous)

    Sends msg to this actor (asynchronous).

    definition classes: ReplyReactorReactorOutputChannelAbstractReactor
  2. def !!(msg: Any): Future[Any]

    Sends msg to this actor and immediately returns a future representing the reply value

    Sends msg to this actor and immediately returns a future representing the reply value.

    msg

    the message to be sent

    returns

    the future

    definition classes: ReplyableActor ⇐ ReplyableReactor ⇐ Replyable
  3. def !![A](msg: Any, f: PartialFunction[Any, A]): Future[A]

    Sends msg to this actor and immediately returns a future representing the reply value

    Sends msg to this actor and immediately returns a future representing the reply value. The reply is post-processed using the partial function f. This also allows to recover a more precise type for the reply value.

    msg

    the message to be sent

    f

    the function to be applied to the response

    returns

    the future

    definition classes: ReplyableActor ⇐ ReplyableReactor ⇐ Replyable
  4. def !?(msec: Long, msg: Any): Option[Any]

    Sends msg to this actor and awaits reply (synchronous) within msec milliseconds

    Sends msg to this actor and awaits reply (synchronous) within msec milliseconds.

    msec

    the time span before timeout

    msg

    the message to be sent

    returns

    None in case of timeout, otherwise Some(x) where x is the reply

    definition classes: ReplyableActor ⇐ ReplyableReactor ⇐ Replyable
  5. def !?(msg: Any): Any

    Sends msg to this actor and awaits reply (synchronous)

    Sends msg to this actor and awaits reply (synchronous).

    msg

    the message to be sent

    returns

    the reply

    definition classes: ReplyableActor ⇐ ReplyableReactor ⇐ Replyable
  6. def ?: Any

    Receives the next message from this actor's mailbox

    Receives the next message from this actor's mailbox.

    definition classes: Actor
  7. def act(): Unit

    The behavior of an actor is specified by implementing this abstract method

    The behavior of an actor is specified by implementing this abstract method.

    attributes: abstract
    definition classes: Reactor
  8. def cancelled: Boolean

  9. def cancelled_=(b: Boolean): Unit

  10. def done(): Unit

  11. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an equivalence relation:

    • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
    • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
    • It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same Int (o1.hashCode.equals(o2.hashCode)).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: AnyRef ⇐ Any
  12. def forward(msg: Any): Unit

    Forwards msg to this actor (asynchronous)

    Forwards msg to this actor (asynchronous).

    definition classes: ReplyReactorReactorOutputChannel
  13. def hashCode(): Int

    Returns a hash code value for the object

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    definition classes: AnyRef ⇐ Any
  14. def link(body: ⇒ Unit): Actor

    Links self to the actor defined by body

    Links self to the actor defined by body.

    body

    the body of the actor to link to

    returns

    the parameter actor

    definition classes: Actor
  15. def link(to: AbstractActor): AbstractActor

    Links self to actor to

    Links self to actor to.

    to

    the actor to link to

    returns

    the parameter actor

    definition classes: Actor
  16. def queue(): Unit

  17. def react(f: PartialFunction[Any, Unit]): Nothing

    Receives a message from this actor's mailbox

    Receives a message from this actor's mailbox.

    This method never returns. Therefore, the rest of the computation has to be contained in the actions of the partial function.

    f

    a partial function with message patterns and actions

    definition classes: ActorReactor
  18. def reactWithin(msec: Long)(f: PartialFunction[Any, Unit]): Nothing

    Receives a message from this actor's mailbox within a certain time span

    Receives a message from this actor's mailbox within a certain time span.

    This method never returns. Therefore, the rest of the computation has to be contained in the actions of the partial function.

    msec

    the time span before timeout

    f

    a partial function with message patterns and actions

    definition classes: Actor
  19. def receive[R](f: PartialFunction[Any, R]): R

    Receives a message from this actor's mailbox

    Receives a message from this actor's mailbox.

    f

    a partial function with message patterns and actions

    returns

    result of processing the received value

    definition classes: Actor
  20. def receiveWithin[R](msec: Long)(f: PartialFunction[Any, R]): R

    Receives a message from this actor's mailbox within a certain time span

    Receives a message from this actor's mailbox within a certain time span.

    msec

    the time span before timeout

    f

    a partial function with message patterns and actions

    returns

    result of processing the received value

    definition classes: Actor
  21. def receiver: Actor

    Returns the Reactor that is receiving from this OutputChannel

    Returns the Reactor that is receiving from this OutputChannel.

    definition classes: ReactorOutputChannel
  22. def send(msg: Any, replyTo: OutputChannel[Any]): Unit

    Sends msg to this actor (asynchronous) supplying explicit reply destination

    Sends msg to this actor (asynchronous) supplying explicit reply destination.

    msg

    the message to send

    replyTo

    the reply destination

    definition classes: ReactorOutputChannel
  23. def start(): Actor

    Starts this actor

    Starts this actor.

    definition classes: ActorReactor
  24. def toString(): String

    Returns a string representation of the object

    Returns a string representation of the object.

    The default representation is platform dependent.

    definition classes: AnyRef ⇐ Any
  25. var trapExit: Boolean

  26. def unlink(from: AbstractActor): Unit

    Unlinks self from actor from

    Unlinks self from actor from.

    definition classes: Actor

Instance constructors

  1. new SwingWorker()