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
Typhoon 3.0 has assembly implementing the TyphoonComponentFactory protocol.
Before activation these methods raise an exception.
After activation they forward to the underlying factory.
In the the case of attaching a configurer this is not the ideal behavior. Before activation it should register an infrastructure definition for the configurer. This would avoid unload/load of singletons.
The text was updated successfully, but these errors were encountered:
I've investigated the problem a bit and see the following decisions:
We can store all of the pre-attached infrastructure definitions in a separate collection - and return them to the TyphoonComponentFactory in the method:
We can add new methods to the current assembly in runtime using the class_addMethod - and (probably 😄) they would be processed just like the normal ones.
TyphoonComponentFactory
protocol.In the the case of attaching a configurer this is not the ideal behavior. Before activation it should register an infrastructure definition for the configurer. This would avoid unload/load of singletons.
The text was updated successfully, but these errors were encountered: