summaryrefslogtreecommitdiff
path: root/src/actors/scala/actors/ReplyReactor.scala
Commit message (Collapse)AuthorAgeFilesLines
* Remove scala.actors and the actors migration module dependencyLukas Rytz2015-04-231-13/+0
|
* SI-6807 Deprecating the Actors library.Vojin Jovanovic2013-02-071-1/+1
| | | | | | | | All public classes, traits and objects marked as deprecated. Added deprecation note on the package object. Embedded external libraries (ThreadPool etc.) are not deprecated as they are intended for internal use only. Review by: @phaller
* Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-021-1/+1
|
* Minor fixes for the Actor Migration KitVojin Jovanovic2012-05-231-5/+2
| | | | | | | Fixed behavior of the StashingActor in case of unhandeled message. Fixed a typo in deprecated annotation. Fixed comments. Fixed copyright.
* Prepared actors hierarchy for migration.Vojin Jovanovic2012-03-201-159/+6
| | | | | | Internal nodes added so methods relevant to akka can be overridden. Review by: @phaller
* 3rd round of clean ups (see r25285, r25292)michelou2011-07-151-6/+6
|
* Applying davetron5000's actors docs patches.Aleksandar Pokopec2011-02-151-3/+2
| | | | | Review by phaller.
* Updated copyright notices to 2011Antonio Cunei2011-01-201-1/+1
|
* Removed more than 3400 svn '$Id' keywords and r...Antonio Cunei2010-05-121-1/+0
| | | | | Removed more than 3400 svn '$Id' keywords and related junk.
* Scaladoc clean-ups for various actor and channe...Philipp Haller2010-04-111-9/+5
| | | | | | Scaladoc clean-ups for various actor and channel types. Actor now extends InputChannel. Channel now extends CanReply. Review by plocinic.
* Renamed Replyable* types to *CanReply. No review.Philipp Haller2010-03-251-1/+1
|
* Addresses see #2017.Philipp Haller2010-03-241-2/+2
|
* Reactor now has type parameter.Philipp Haller2010-03-081-14/+88
|
* Control-flow combinators do not require thread-...Philipp Haller2010-02-231-0/+3
| | | | | | Control-flow combinators do not require thread-local variable in Reactor. Review by plocinic.
* Some optimizations to actor message queues and ...Philipp Haller2010-01-141-9/+7
| | | | | Some optimizations to actor message queues and event handling.
* Fixed issue in Reactor/Actor that could lead to...Philipp Haller2010-01-071-2/+6
| | | | | | | | | Fixed issue in Reactor/Actor that could lead to premature termination of actors. Added test that could reproduce it (occurred more often on larger inputs, but test should not take too much time). The issue also caused the reactor-exceptionOnSend test to timeout sometimes. Review by plocinic.
* Eliminating the deprecation warnings in the act...Paul Phillips2009-12-151-2/+2
| | | | | Eliminating the deprecation warnings in the actor library.
* Updated copyright notices to 2010Antonio Cunei2009-12-071-1/+1
|
* First half of fix for #1518.Philipp Haller2009-10-261-0/+32
|
* Restored type of receiver in OutputChannel and ...Philipp Haller2009-10-061-1/+1
| | | | | | | Restored type of receiver in OutputChannel and Channel to Actor. ReplyReactor inherits from ReplyableReactor. ReplyableReactor is now private.
* Fixed thread-visibility issues causing scala-ni...Philipp Haller2009-10-011-0/+1
| | | | | Fixed thread-visibility issues causing scala-nightly-args 387 to fail.
* Removed LightReaction. Simplified ActorTask.Philipp Haller2009-09-301-1/+1
|
* Tightened access modifiers in Reactor and Actor...Philipp Haller2009-09-241-2/+2
| | | | | | Tightened access modifiers in Reactor and Actor, so that fewer methods are user-visible (showing up in scaladoc).
* fixed Scala comments, added svn:keywordsmichelou2009-07-071-7/+7
|
* Refactoring of sender/reply, as well as !!, !? ...Philipp Haller2009-06-281-0/+63
Refactoring of sender/reply, as well as !!, !? methods into separate traits.