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
Implemented. Intend to update docs and push as 3.1 - TyphoonAssemblyActivator is deprecated by this. One outstanding feature:
When we inject an assembly we currently simply inject TyphoonComponentFactory. Its better to inject the activated assembly as properties of collaborators work correctly here.
Example:
//Inject TyphoonComponentFactory
@property ApplicationAssembly *assembly;
assembly.modelProvider //Resolves to TyphoonCollaboratingAssemblyProxy//Inject activated assembly
@property ApplicationAssembly *assembly;
assembly.modelProvider //Resolves to activated ModelProvider
Rather than instantiating an activator like:
Then allow:
NetworkProvider
withTestNetworkProvider
Rationale:
Don't especially want to change the API again, but benefits are:
Drawbacks:
Changes API again. . . Typhoon 3.1 feature?
The text was updated successfully, but these errors were encountered: