Package co.paralleluniverse.actors
Interface ActorBuilder<Message,V>
-
- All Known Implementing Classes:
Actor
,ActorSpec
,BasicActor
,BehaviorActor
,EventSourceActor
,FiniteStateMachineActor
,ProxyServerActor
,ServerActor
,SupervisorActor
public interface ActorBuilder<Message,V>
An object that can construct a new actor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Actor<Message,V>
build()
Constructs a new actor
-
-
-
Method Detail
-
build
Actor<Message,V> build() throws SuspendExecution
Constructs a new actor- Returns:
- a newly created actor.
- Throws:
SuspendExecution
-
-