vert-x3 / vertx-mqtt

Vert.x MQTT
Apache License 2.0
184 stars 86 forks source link

how to use GlobalTrafficShapingHandler for the mqtt server? #220

Open ljwhx2002 opened 2 years ago

ljwhx2002 commented 2 years ago

Questions

we can use the trafficHandler on netty pipeline,buy it is unvisiable in the mqttserver。

such as: trafficHandler = new GlobalTrafficShapingHandler(xxx); ChannelPipeline pipeline = pipeline(); pipeline.addLast("global-traffic-shaping", trafficHandler);

unfortunately, the pipeline is unvisiable in the mqttserver.

can I get the pipeline by someway?

vietj commented 2 years ago

we could have an extension point of that @ljwhx2002