final class ActorSystemSetup extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- ActorSystemSetup
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def and[T <: Setup](t: T): ActorSystemSetup
alias for
withSetup
allowing for fluent combination of settings:a and b and c
, wherea
,b
andc
are concrete Setup instances.alias for
withSetup
allowing for fluent combination of settings:a and b and c
, wherea
,b
andc
are concrete instances. If a setting of the same concrete Setup already is present it will be replaced. - def get[T <: Setup](implicit arg0: ClassTag[T]): Option[T]
Scala API: Extract a concrete Setup of type
T
if it is defined in the settings. - def get[T <: Setup](clazz: Class[T]): Optional[T]
Java API: Extract a concrete Setup of type
T
if it is defined in the settings. - def toString(): String
- Definition Classes
- ActorSystemSetup → AnyRef → Any
- def withSetup[T <: Setup](t: T): ActorSystemSetup
Add a concrete Setup.
Add a concrete . If a setting of the same concrete Setup already is present it will be replaced.
A set of setup settings for programmatic configuration of the actor system.
Constructor is *Internal API*. Use the factory methods ActorSystemSetup#create and akka.actor.Actor#apply to create instances.