Skip to content
Advertisement

what’s the meaning of server.onDispose().block()?

There are few web pages about reactor-netty on the internet. And I don’t understand the meaning of some code below. These code below is just ABC of reactor-netty. But I really can not find more information on the internet. So I have to ask for help.

JavaScript
JavaScript
JavaScript

Please help me with the five places in the code above. Thank you.

Advertisement

Answer

<2>block: Its simply to block the application thread until the server is shutdown. If there was no block the application would simply terminate without the server listening. The javadoc for it states

JavaScript

<1>onDispose : When the underlying netty channel shutsdown, the future will get notified of its success or failure. Its Mono type simply means there is no onNext as there are no emissions, its either successful or a failure.

JavaScript

3 and 4 is the same behavior from a client connection/channel perspective.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement