public interface Scope
Deploy
serves two purposes: as a marker for
pattern matching the “scope” (i.e. local/remote/cluster) as well as for
extending the information carried by the final Deploy class. Scopes can be
used in conjunction with a custom ActorRefProvider
, making
Akka actors fully extensible.Modifier and Type | Method and Description |
---|---|
Scope |
withFallback(Scope other)
When merging
Deploy instances using withFallback() on
the left one, this is propagated to “merging” scopes in the same way. |
Scope withFallback(Scope other)
Deploy
instances using
withFallback()
on
the left one, this is propagated to “merging” scopes in the same way.
The setup is biased towards preferring the callee over the argument, i.e.
a.withFallback(b)
is called expecting that
a
should in general take
precedence.other
- (undocumented)