Package ratpack.server.internal

Examples of ratpack.server.internal.NettyRatpackServer


   * @param launchConfig The server's configuration
   * @return A new, not yet started, Ratpack server.
   */
  public static RatpackServer build(LaunchConfig launchConfig) {
    Function<Stopper, ChannelInitializer<SocketChannel>> channelInitializer = buildChannelInitializer(launchConfig);
    return new NettyRatpackServer(launchConfig, channelInitializer);
  }
View Full Code Here

TOP

Related Classes of ratpack.server.internal.NettyRatpackServer

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.