On Wed, Jul 11, 2018 at 3:22 PM Oleg Kalnichevski <[email protected]> wrote:
> On Wed, 2018-07-11 at 10:14 -0600, Gary Gregory wrote:
> > In version 4 I have:
> >
> > server = ServerBootstrap.bootstrap()
> > .setListenerPort(port)
> > .setServerInfo("My custom string")
> > ...
> >
> > How do I do "setServerInfo" in version 5?
> >
> > Gary
>
> HttpServer server = ServerBootstrap.bootstrap()
> .setListenerPort(port)
> .setHttpProcessor(HttpProcessors.server("my-server-info"))
> .create();
>
> This should be equivalent to the old code.
>
Thanks Oleg. How about .setIOReactorConfig(config) ?
Gary
>
> Oleg
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>