simplePushConfig.endpointHost(notificationSocketBinding.getSocketAddress().getHostName());
simplePushConfig.endpointPort(notificationSocketBinding.getPort());
}
final DefaultEventExecutorGroup reaperExcutorGroup = new DefaultEventExecutorGroup(1);
final DataStore datastore = injectedDataStore.getValue();
final SimplePushServerConfig simplePushServerConfig = simplePushConfig.build();
final ServerBootstrap serverBootstrap = new ServerBootstrap()
.group(new NioEventLoopGroup(), new NioEventLoopGroup())
.channel(NioServerSocketChannel.class)
.childHandler(new SockJSChannelInitializer(simplePushServerConfig, datastore, sockJsConfig, reaperExcutorGroup));