Class Setup

  • Direct Known Subclasses:
    BootstrapSetup, ExtensionSetup, JacksonObjectMapperProviderSetup, SerializationSetup, SSLEngineProviderSetup

    public abstract class Setup
    extends java.lang.Object
    Marker supertype for a setup part that can be put inside pekko.actor.setup.ActorSystemSetup, 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 the pekko.actor.setup.ActorSystemSetup that 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
      ActorSystemSetup and​(Setup other)
      Construct an pekko.actor.setup.ActorSystemSetup with this setup combined with another one.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Setup

        public Setup()
    • Method Detail

      • and

        public final ActorSystemSetup and​(Setup other)
        Construct an pekko.actor.setup.ActorSystemSetup with this setup combined with another one. Allows for fluent creation of settings. If other is a setting of the same concrete pekko.actor.setup.Setup as this it will replace this.