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
Add components that would allow to control the order of the application startup and shutdown.
Currently there are many static variables which make use of each other and if they are initialized or de-initialized in wrong order (which is hard to track since they are scattered throughout the whole application) a crash may happen.
The components should allow managing initialization/de-initialization of such variables or other components in general.
Such variables are basically singletons but sometimes singleton is just the only option.
The text was updated successfully, but these errors were encountered:
Add components that would allow to control the order of the application startup and shutdown.
Currently there are many static variables which make use of each other and if they are initialized or de-initialized in wrong order (which is hard to track since they are scattered throughout the whole application) a crash may happen.
The components should allow managing initialization/de-initialization of such variables or other components in general.
Such variables are basically singletons but sometimes singleton is just the only option.
The text was updated successfully, but these errors were encountered: