![JAR search and dependency download from the Maven repository](/logo.png)
scala.actors.migration.Props.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-actors-migration Show documentation
Show all versions of scala-actors-migration Show documentation
Migration kit that enables easy transition from the Scala Actors to Akka.
The newest version!
package scala.actors.migration
import scala.actors._
/**
* ActorRef configuration object. It represents the minimal subset of Akka Props class.
*/
case class Props(creator: () ⇒ InternalActor, dispatcher: String) {
/**
* Returns a new Props with the specified creator set
*/
final def withCreator(c: ⇒ InternalActor) = copy(creator = () ⇒ c)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy