Class NettyServerInitializer

java.lang.Object
io.netty.channel.ChannelHandlerAdapter
io.netty.channel.ChannelInboundHandlerAdapter
io.netty.channel.ChannelInitializer<io.netty.channel.socket.SocketChannel>
org.jivesoftware.openfire.spi.NettyServerInitializer
All Implemented Interfaces:
io.netty.channel.ChannelHandler, io.netty.channel.ChannelInboundHandler

public class NettyServerInitializer extends io.netty.channel.ChannelInitializer<io.netty.channel.socket.SocketChannel>
Creates a newly configured ChannelPipeline for a new channel.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.netty.channel.ChannelHandler

    io.netty.channel.ChannelHandler.Sharable
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final SystemProperty<Duration>
    Controls the write timeout time in seconds to handle stalled sessions and prevent DoS
  • Constructor Summary

    Constructors
    Constructor
    Description
    NettyServerInitializer(ConnectionConfiguration configuration, io.netty.channel.group.ChannelGroup allChannels, Set<NettyChannelHandlerFactory> channelHandlerFactories, io.netty.util.concurrent.EventExecutorGroup blockingHandlerExecutor)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    initChannel(io.netty.channel.socket.SocketChannel ch)
     

    Methods inherited from class io.netty.channel.ChannelInitializer

    channelRegistered, exceptionCaught, handlerAdded, handlerRemoved

    Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapter

    channelActive, channelInactive, channelRead, channelReadComplete, channelUnregistered, channelWritabilityChanged, userEventTriggered

    Methods inherited from class io.netty.channel.ChannelHandlerAdapter

    ensureNotSharable, isSharable

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • WRITE_TIMEOUT_SECONDS

      public static final SystemProperty<Duration> WRITE_TIMEOUT_SECONDS
      Controls the write timeout time in seconds to handle stalled sessions and prevent DoS
    • TRAFFIC_HANDLER_NAME

      public static final String TRAFFIC_HANDLER_NAME
      See Also:
  • Constructor Details

    • NettyServerInitializer

      public NettyServerInitializer(ConnectionConfiguration configuration, io.netty.channel.group.ChannelGroup allChannels, Set<NettyChannelHandlerFactory> channelHandlerFactories, io.netty.util.concurrent.EventExecutorGroup blockingHandlerExecutor)
  • Method Details

    • initChannel

      public void initChannel(io.netty.channel.socket.SocketChannel ch) throws Exception
      Specified by:
      initChannel in class io.netty.channel.ChannelInitializer<io.netty.channel.socket.SocketChannel>
      Throws:
      Exception