Есть ли способ получить доступ к распределителю ByteBuf, используемому в Reactor Netty в обработчике запросов?Подобно тому, как можно сделать final ByteBufAllocator byteBufAllocator = ctx.alloc();
в чистой нетти?
HttpServer.create()
.host("0.0.0.0")
.port(8080)
.route(routes -> {
routes.ws("/ws", (in, out) ->
// how to get the allocator here?
});
})