Need a way to gracefully exit an application #6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When the backend stops, the main goroutine stops abruptly, causing the whole program to stop abruptly. This poses a problem if there are other goroutines running. There should be an Application.Stop behavior which stops the application and blocks until it has completely stopped. Nasin can call this behavior after the backend exits to ensure the application is properly shut down.