Example usage for io.netty.bootstrap AbstractBootstrap handler

List of usage examples for io.netty.bootstrap AbstractBootstrap handler

Introduction

In this page you can find the example usage for io.netty.bootstrap AbstractBootstrap handler.

Prototype

ChannelHandler handler

To view the source code for io.netty.bootstrap AbstractBootstrap handler.

Click Source Link

Usage

From source file:com.github.mrstampy.kitchensync.netty.Bootstrapper.java

License:Open Source License

/**
 * Sets the default bootstrap options (SO_BROADCAST=true, SO_REUSEADDR=true)
 * and the initializer as the channel handler.
 *
 * @param b//from  w w w .  j a  v a  2  s  .c o m
 *          the b
 * @param initializer
 *          the initializer
 */
protected void setDefaultBootstrapOptions(AbstractBootstrap<?, ?> b, ChannelInitializer<?> initializer) {
    b.option(ChannelOption.SO_BROADCAST, true);
    b.option(ChannelOption.SO_REUSEADDR, true);
    b.handler(initializer);
}