facet classafIoc::Override
sys::Obj afIoc::Override : sys::Facet
Use in AppModule
classes to override a service builder.
- aliasTypes
const Type[]? aliasTypes := null
Override the list of service types aliases.
- aliases
const Str[]? aliases := null
Override the list of service ID aliases.
- optional
const Bool optional := false
Marks the override as optional; no Err is thrown if the service is not found.
This allows you to override services that may or may not be defined in the registry. (e.g. overriding services from optional 3rd party libraries.)
- overrideId
const Str? overrideId := null
An optional reference to this override, so others may override this override. 3rd party libraries should always supply an
overrideId
.- scopes
const Str[]? scopes := null
Override the list of scopes the service may be created in.
- serviceId
const Str? serviceId := null
The service Id (or override Id) to be overridden.
Use either this or
serviceType
, not both.- serviceType
const Type? serviceType := null
The type of the service to be overridden.
Use either this or
serviceId
, not both.