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

scala.actors.migration.Props.scala Maven / Gradle / Ivy

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