whiskeysierra
whiskeysierra

Reputation: 5120

How can I add a custom Netty channel handler in Vert.x?

The docs only mention Netty, but I can't find a way to access e.g. the ServerBootstrap or get a hold of the channel.

Upvotes: 0

Views: 314

Answers (2)

tsegismont
tsegismont

Reputation: 9128

It's not possible to add a custom channel handler to servers created by Vert.x.

However you can integrate servers created manually with Vert.x contexts/verticles.

See http://www.julienviet.com/advanced-vertx-guide/#integrating-netty

Upvotes: 3

Norman Maurer
Norman Maurer

Reputation: 23557

As far as I know this is not possible. Netty is an implementation detail of Vert.x

Upvotes: 0

Related Questions