final case class Props(deploy: Deploy, clazz: Class[_], args: Seq[Any]) extends Product with Serializable
Props is a configuration object using in creating an Actor; it is immutable, so it is thread-safe and fully shareable.
Examples on Scala API:
val props = Props.empty val props = Props[MyActor] val props = Props(classOf[MyActor], arg1, arg2) val otherProps = props.withDispatcher("dispatcher-id") val otherProps = props.withDeploy(<deployment info>)
Examples on Java API:
final Props props = Props.empty(); final Props props = Props.create(MyActor.class, arg1, arg2); final Props otherProps = props.withDispatcher("dispatcher-id"); final Props otherProps = props.withDeploy(<deployment info>);
- Annotations
- @SerialVersionUID()
- Source
- Props.scala
- Alphabetic
- By Inheritance
- Props
- Serializable
- Product
- Equals
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-  def +(other: String): String
-  def ->[B](y: B): (Props, B)
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-    def actorClass(): Class[_ <: Actor]Obtain an upper-bound approximation of the actor class which is going to be created by these Props. Obtain an upper-bound approximation of the actor class which is going to be created by these Props. In other words, the actor factory method will produce an instance of this class or a subclass thereof. This is used by the actor system to select special dispatchers or mailboxes in case dependencies are encoded in the actor type. 
-  val args: Seq[Any]
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-  val clazz: Class[_]
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
-  val deploy: Deploy
-    def dispatcher: StringConvenience method for extracting the dispatcher information from the contained Deploy instance. 
-  def ensuring(cond: (Props) => Boolean, msg: => Any): Props
-  def ensuring(cond: (Props) => Boolean): Props
-  def ensuring(cond: Boolean, msg: => Any): Props
-  def ensuring(cond: Boolean): Props
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-    def mailbox: StringConvenience method for extracting the mailbox information from the contained Deploy instance. 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def productElementNames: Iterator[String]- Definition Classes
- Product
 
-    def routerConfig: RouterConfigConvenience method for extracting the router configuration from the contained Deploy instance. 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-    def withActorTags(tags: Set[String]): PropsScala API: Returns a new Props with the specified set of tags. 
-    def withActorTags(tags: String*): PropsReturns a new Props with the specified set of tags. Returns a new Props with the specified set of tags. - Annotations
- @varargs()
 
-    def withDeploy(d: Deploy): PropsReturns a new Props with the specified deployment configuration. 
-    def withDispatcher(d: String): PropsReturns a new Props with the specified dispatcher set. 
-    def withMailbox(m: String): PropsReturns a new Props with the specified mailbox set. 
-    def withRouter(r: RouterConfig): PropsReturns a new Props with the specified router config set. 
Deprecated Value Members
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- (Since version 9) 
 
-    def formatted(fmtstr: String): String- Implicit
- This member is added by an implicit conversion from Props toStringFormat[Props] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
- (Since version 2.12.16) Use - formatString.format(value)instead of- value.formatted(formatString), or use the- f""string interpolator. In Java 15 and later,- formattedresolves to the new method in String which has reversed parameters.
 
-    def →[B](y: B): (Props, B)- Implicit
- This member is added by an implicit conversion from Props toArrowAssoc[Props] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
- (Since version 2.13.0) Use - ->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.