Reputation: 5120
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
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
Reputation: 23557
As far as I know this is not possible. Netty is an implementation detail of Vert.x
Upvotes: 0