Package akka.actor.setup
Class Setup
- java.lang.Object
 - 
- akka.actor.setup.Setup
 
 
- 
- Direct Known Subclasses:
 BootstrapSetup,ExtensionSetup,JacksonObjectMapperProviderSetup,SerializationSetup,SSLEngineProviderSetup
public abstract class Setup extends java.lang.ObjectMarker supertype for a setup part that can be put insideActorSystemSetup, if a specific concrete setup is not specified in the actor system setup that means defaults are used (usually from the config file) - no concrete setup instance should be mandatory in theActorSystemSetupthat an actor system is created with. 
- 
- 
Constructor Summary
Constructors Constructor Description Setup() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActorSystemSetupand(Setup other)Construct anActorSystemSetupwith this setup combined with another one. 
 - 
 
- 
- 
Method Detail
- 
and
public final ActorSystemSetup and(Setup other)
Construct anActorSystemSetupwith this setup combined with another one. Allows for fluent creation of settings. Ifotheris a setting of the same concreteSetupas this it will replace this. 
 - 
 
 -