Package csw.framework.javadsl
Class JContainerCmd
- java.lang.Object
-
- csw.framework.javadsl.JContainerCmd
-
public class JContainerCmd extends java.lang.Object
Helper instance for Java to startContainerCmd
app
-
-
Constructor Summary
Constructors Constructor Description JContainerCmd()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static akka.actor.typed.ActorRef<?>
start(java.lang.String name, Subsystem subsystem, java.lang.String[] args, java.util.Optional<com.typesafe.config.Config> defaultConfig)
Utility for starting a Container to host components or start a component in Standalone mode
-
-
-
Method Detail
-
start
public static akka.actor.typed.ActorRef<?> start(java.lang.String name, Subsystem subsystem, java.lang.String[] args, java.util.Optional<com.typesafe.config.Config> defaultConfig)
Utility for starting a Container to host components or start a component in Standalone mode- Parameters:
name
- the name to be used for the main app which uses this utilityargs
- the command line args accepted in the main app which uses this utilitydefaultConfig
- the default configuration which specifies the container or the component to be started alone without any containersubsystem
- (undocumented)- Returns:
- actor ref of the container or supervisor of the component started without container
-
-