You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2018. It is now read-only.
Shutdown process of server transport is as following: ServerTransport.stop() closes server channel and all accepted client channels. While this mechanism serves its purpose this approach is rather exotic. Let's not have exotic code out of nowhere.
In this task:
Keep in stop() method just closing of server channel.
In order to shutdown entire service transport properly (account that all accepted connections must be closed) -- another system layer must be shutdown - a resources layer.
For reference look at io.scalecube.gateway.rsocket.websocket.RSocketWebsocketServer#stop
The text was updated successfully, but these errors were encountered:
Shutdown process of server transport is as following:
ServerTransport.stop()
closes server channel and all accepted client channels. While this mechanism serves its purpose this approach is rather exotic. Let's not have exotic code out of nowhere.In this task:
For reference look at io.scalecube.gateway.rsocket.websocket.RSocketWebsocketServer#stop
The text was updated successfully, but these errors were encountered: