public class DirectoryScanner__Proxy extends Object implements DirectoryScanner
| Constructor and Description |
|---|
DirectoryScanner__Proxy(Actor actor,
Mailbox mailbox) |
| Modifier and Type | Method and Description |
|---|---|
<T> io.vlingo.xoom.common.Completes<T> |
actorOf(Class<T> arg0,
Address arg1)
Answer the
protocol reference of the actor with address as a
Completes<T> eventual outcome, or null as a Completes<T>
eventual outcome if not found. |
<T> io.vlingo.xoom.common.Completes<T> |
actorOf(Class<T> arg0,
Address arg1,
Definition arg2)
Answers the
Completes<T> that will eventually complete with the T protocol
of the backing Actor of the given address, or a new Actor instance
of the type and definition. |
<T> io.vlingo.xoom.common.Completes<Optional<T>> |
maybeActorOf(Class<T> arg0,
Address arg1)
Answer the
protocol reference of the actor with address as a non-empty
Completes<Optional<T>> eventual outcome, or an empty Optional if not found. |
public <T> io.vlingo.xoom.common.Completes<T> actorOf(Class<T> arg0, Address arg1)
DirectoryScannerprotocol reference of the actor with address as a
Completes<T> eventual outcome, or null as a Completes<T>
eventual outcome if not found.actorOf in interface DirectoryScannerT - the protocol typearg0 - the Class<T> of the protocol that the actor must supportarg1 - the Address of the actor to findCompletes<T>public <T> io.vlingo.xoom.common.Completes<T> actorOf(Class<T> arg0, Address arg1, Definition arg2)
DirectoryScannerCompletes<T> that will eventually complete with the T protocol
of the backing Actor of the given address, or a new Actor instance
of the type and definition.actorOf in interface DirectoryScannerT - the protocol typearg0 - the Class<T> protocol supported by the backing Actorarg1 - the Address of the Actor to find and to create the new Actor with if not foundarg2 - the Definition providing parameters to the ActorCompletes<T>public <T> io.vlingo.xoom.common.Completes<Optional<T>> maybeActorOf(Class<T> arg0, Address arg1)
DirectoryScannerprotocol reference of the actor with address as a non-empty
Completes<Optional<T>> eventual outcome, or an empty Optional if not found.maybeActorOf in interface DirectoryScannerT - the protocol typearg0 - the Class<T> of the protocol that the actor must supportarg1 - the Address of the actor to findCompletes<Optional<T>>Copyright © 2021. All rights reserved.