I would like to create a window with a progressbar which shows the current status of Spring's object instantiation. From Spring.Net's documentation it seems that IObjectPostProcessors
is the right point to start and track whenever an Object has been instanciated. However in order to get "Percentage of instantiated classes" I need to ask ObjectDefinitionCount
of spring's factory to get the number of configured object. However this does not work until the contextcreation has been finished (also this problem problem seems to be related).
If it's not possible to use Spring to get the start-up status, how do you display information during application start up to the user?