All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.actors.ReplyReactorTask.scala Maven / Gradle / Ivy

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2005-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

package scala.actors

/**
 *  @author Philipp Haller
 *  @note   This class inherits a public var called 'reactor' from ReactorTask,
 *  and also defines a constructor parameter which shadows it (which makes any
 *  changes to the underlying var invisible.) I can't figure out what's supposed
 *  to happen, so I renamed the constructor parameter to at least be less confusing.
 */
private[actors] class ReplyReactorTask(replyReactor: InternalReplyReactor,
                                       fun: () => Unit,
                                       handler: PartialFunction[Any, Any],
                                       msg: Any)
  extends ReactorTask(replyReactor, fun, handler, msg) {

  var saved: InternalReplyReactor = _

  protected override def beginExecution() {
    saved = Actor.tl.get
    // !!! If this is supposed to be setting the current contents of the
    // inherited mutable var rather than always the value given in the constructor,
    // then it should be changed to "set reactor".
    Actor.tl set replyReactor
  }

  protected override def suspendExecution() {
    Actor.tl set saved
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy