Package ratpack.launch.internal

Examples of ratpack.launch.internal.DelegatingLaunchConfig


    Path configFile = new DefaultFileSystemBinding(baseDir).file(LaunchConfigs.CONFIG_RESOURCE_DEFAULT);
    LaunchConfig launchConfig = LaunchConfigs.createFromFile(closure.getClass().getClassLoader(), baseDir, configFile, properties, defaultProperties);

    if (scriptFile == null) {
      launchConfig = new DelegatingLaunchConfig(launchConfig) {
        @Override
        public HandlerFactory getHandlerFactory() {
          return new GroovyClosureHandlerFactory(closure);
        }
      };
View Full Code Here

TOP

Related Classes of ratpack.launch.internal.DelegatingLaunchConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.