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. def canEqual(that: Any): Boolean
    Definition Classes
    Deploy → Equals
  2. val config: Config
  3. def copy(path: String = path, config: Config = config, routerConfig: RouterConfig = routerConfig, scope: Scope = scope, dispatcher: String = dispatcher, mailbox: String = mailbox): Deploy
  4. val dispatcher: String
  5. def equals(other: Any): Boolean
    Definition Classes
    Deploy → Equals → AnyRef → Any
  6. def hashCode(): Int
    Definition Classes
    Deploy → AnyRef → Any
  7. val mailbox: String
  8. val path: String
  9. def productArity: Int
    Definition Classes
    Deploy → Product
  10. def productElement(n: Int): Any
    Definition Classes
    Deploy → Product
  11. def productElementName(n: Int): String
    Definition Classes
    Product
  12. def productElementNames: Iterator[String]
    Definition Classes
    Product
  13. def productIterator: Iterator[Any]
    Definition Classes
    Product
  14. def productPrefix: String
    Definition Classes
    Product
  15. val routerConfig: RouterConfig
  16. val scope: Scope
  17. val tags: Set[String]
  18. def toString(): String
    Definition Classes
    Deploy → AnyRef → Any
  19. 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).

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