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
I am confused by the 4 methods related to shutting down:
- public void Shutdown()
- public Task ShutdownAsync()
- public void ServerShutdown()
- public Task ServerShutdownAsync()
Are the following observations correct?
After some fiddlig, I found out that Shutdown() shuts down the parent RServe process and the forked child processes. ServerShutdown() shuts down only the child process for the connection it is being called upon.
ServerShutdown() has a comment "This command is asynchronous!", but this is not actually run asynchronously.
The text was updated successfully, but these errors were encountered:
I am confused by the 4 methods related to shutting down:
Are the following observations correct?
Shutdown()
shuts down the parent RServe process and the forked child processes.ServerShutdown()
shuts down only the child process for the connection it is being called upon.ServerShutdown()
has a comment "This command is asynchronous!", but this is not actually run asynchronously.The text was updated successfully, but these errors were encountered: