Interface IHasPostCreationCall
- All Known Implementing Classes:
ExpansionInfoValidator,KnownTypeRegistry,NameConverter,ParameterValidator,VirtualTypeValidator
public interface IHasPostCreationCall
Causes the
DependencyContainer to call this method after the constructor has been invoked
Used for breaking recursive dependencies-
Method Summary
Modifier and TypeMethodDescriptionvoidThe method called after the constructor of the type was invoked.
-
Method Details
-
afterCreation
void afterCreation()The method called after the constructor of the type was invoked. At this time the instance will already be in the DI registry, so anything created by this can request an instance of this type.
-