sourceafIoc::ServiceScope.fan


** Scope definitions for Services. 
enum class ServiceScope {
    
    ** A new service is created each it is asked for. You probably do **not** want this! See the `Autobuild` facet instead.
    perInjection,
    
    ** Service is created once per thread. This is this default for non-const services.
    perThread,
    
    ** Service is a singleton, only one is ever created. This is the default for const services.
    perApplication;
    
}