public final class RemoteScope extends java.lang.Object implements Scope, scala.Product, scala.Serializable
Constructor and Description |
---|
RemoteScope(Address node) |
Modifier and Type | Method and Description |
---|---|
abstract static boolean |
canEqual(java.lang.Object that) |
abstract static boolean |
equals(java.lang.Object that) |
Address |
node() |
abstract static int |
productArity() |
abstract static java.lang.Object |
productElement(int n) |
static scala.collection.Iterator<java.lang.Object> |
productIterator() |
static java.lang.String |
productPrefix() |
Scope |
withFallback(Scope other)
When merging
Deploy instances using withFallback() on
the left one, this is propagated to “merging” scopes in the same way. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public RemoteScope(Address node)
public abstract static boolean canEqual(java.lang.Object that)
public abstract static boolean equals(java.lang.Object that)
public abstract static java.lang.Object productElement(int n)
public abstract static int productArity()
public static scala.collection.Iterator<java.lang.Object> productIterator()
public static java.lang.String productPrefix()
public Address node()
public Scope withFallback(Scope other)
Scope
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.withFallback
in interface Scope
other
- (undocumented)