Packages

final class Deploy extends Serializable with Product with Equals

This class represents deployment configuration for a given actor path. It is marked final in order to guarantee stable merge semantics (i.e. what overrides what in case multiple configuration sources are available) and is fully extensible via its Scope argument, and by the fact that an arbitrary Config section can be passed along with it (which will be merged when merging two Deploys).

The path field is used only when inserting the Deploy into a deployer and not needed when just doing deploy-as-you-go:

val remoteProps = someProps.withDeploy(Deploy(scope = RemoteScope("someOtherNodeName")))
Annotations
@SerialVersionUID()
Source
Deployer.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Deploy
  2. Product
  3. Equals
  4. Serializable
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Deploy(scope: Scope)

    Java API to create a Deploy with the given Scope

  2. new Deploy(routing: RouterConfig, scope: Scope)

    Java API to create a Deploy with the given RouterConfig with Scope

  3. new Deploy(routing: RouterConfig)

    Java API to create a Deploy with the given RouterConfig

  4. new Deploy(path: String, config: Config, routerConfig: RouterConfig, scope: Scope, dispatcher: String, mailbox: String)
  5. new Deploy(path: String = "", config: Config = ConfigFactory.empty, routerConfig: RouterConfig = NoRouter, scope: Scope = NoScopeGiven, dispatcher: String = Deploy.NoDispatcherGiven, mailbox: String = Deploy.NoMailboxGiven, tags: Set[String] = Set.empty)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Deploy toany2stringadd[Deploy] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Deploy, B)
    Implicit
    This member is added by an implicit conversion from Deploy toArrowAssoc[Deploy] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def canEqual(that: Any): Boolean
    Definition Classes
    Deploy → Equals
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  9. val config: Config
  10. def copy(path: String = path, config: Config = config, routerConfig: RouterConfig = routerConfig, scope: Scope = scope, dispatcher: String = dispatcher, mailbox: String = mailbox): Deploy
  11. val dispatcher: String
  12. def ensuring(cond: (Deploy) => Boolean, msg: => Any): Deploy
    Implicit
    This member is added by an implicit conversion from Deploy toEnsuring[Deploy] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Deploy) => Boolean): Deploy
    Implicit
    This member is added by an implicit conversion from Deploy toEnsuring[Deploy] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): Deploy
    Implicit
    This member is added by an implicit conversion from Deploy toEnsuring[Deploy] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Deploy
    Implicit
    This member is added by an implicit conversion from Deploy toEnsuring[Deploy] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(other: Any): Boolean
    Definition Classes
    Deploy → Equals → AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. def hashCode(): Int
    Definition Classes
    Deploy → AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. val mailbox: String
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  25. val path: String
  26. def productArity: Int
    Definition Classes
    Deploy → Product
  27. def productElement(n: Int): Any
    Definition Classes
    Deploy → Product
  28. def productElementName(n: Int): String
    Definition Classes
    Product
  29. def productElementNames: Iterator[String]
    Definition Classes
    Product
  30. def productIterator: Iterator[Any]
    Definition Classes
    Product
  31. def productPrefix: String
    Definition Classes
    Product
  32. val routerConfig: RouterConfig
  33. val scope: Scope
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. val tags: Set[String]
  36. def toString(): String
    Definition Classes
    Deploy → AnyRef → Any
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. def withFallback(other: Deploy): Deploy

    Do a merge between this and the other Deploy, where values from “this” take precedence.

    Do a merge between this and the other Deploy, where values from “this” take precedence. The “path” of the other Deploy is not taken into account. All other members are merged using X.withFallback(other.X).

  41. def withTags(tags: Set[String]): Deploy

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Deploy toStringFormat[Deploy] 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, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (Deploy, B)
    Implicit
    This member is added by an implicit conversion from Deploy toArrowAssoc[Deploy] 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.

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromDeploy to any2stringadd[Deploy]

Inherited by implicit conversion StringFormat fromDeploy to StringFormat[Deploy]

Inherited by implicit conversion Ensuring fromDeploy to Ensuring[Deploy]

Inherited by implicit conversion ArrowAssoc fromDeploy to ArrowAssoc[Deploy]

Ungrouped