Package ratpack.core.service
Interface ServiceDependenciesSpec
-
public interface ServiceDependenciesSpec
Allows declaring which services depend on which services.- Since:
- 1.3
- See Also:
ServiceDependencies
,DependsOn
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ServiceDependenciesSpec
dependsOn(Class<?> dependents, Class<?> dependencies)
A convenience form ofdependsOn(Predicate, Predicate)
where the predicates are based on compatibility with the given types.default <T1,T2>
ServiceDependenciesSpecdependsOn(Class<T1> dependentsType, Predicate<? super T1> dependents, Class<T2> dependenciesType, Predicate<? super T2> dependencies)
Specifies that all services that are of the givendependentsType
that match thedependents
predicate are dependent on all services that are of thedependenciesType
that match thedependencies
predicate.ServiceDependenciesSpec
dependsOn(Predicate<? super Service> dependents, Predicate<? super Service> dependencies)
Specifies that all services that match thedependents
predicate are dependent on all services that match thedependencies
predicate.
-
-
-
Method Detail
-
dependsOn
ServiceDependenciesSpec dependsOn(Predicate<? super Service> dependents, Predicate<? super Service> dependencies) throws Exception
Specifies that all services that match thedependents
predicate are dependent on all services that match thedependencies
predicate.- Parameters:
dependents
- the criteria for dependent servicesdependencies
- the criteria for services they depend on- Returns:
this
- Throws:
Exception
- any thrown by either predicate
-
dependsOn
default <T1,T2> ServiceDependenciesSpec dependsOn(Class<T1> dependentsType, Predicate<? super T1> dependents, Class<T2> dependenciesType, Predicate<? super T2> dependencies) throws Exception
Specifies that all services that are of the givendependentsType
that match thedependents
predicate are dependent on all services that are of thedependenciesType
that match thedependencies
predicate.- Type Parameters:
T1
- the type of dependent servicesT2
- the type of services they depend on- Parameters:
dependents
- the criteria for dependent servicesdependencies
- the criteria for services they depend on- Returns:
this
- Throws:
Exception
- any thrown by either predicate
-
dependsOn
default ServiceDependenciesSpec dependsOn(Class<?> dependents, Class<?> dependencies) throws Exception
A convenience form ofdependsOn(Predicate, Predicate)
where the predicates are based on compatibility with the given types.All services that are type compatible with the
dependents
type, will be considered dependents of all services that are type compatible with thedependencies
type.Use of this method is equivalent to annotating
dependents
withDependsOn
with a value ofdependencies
. It can be useful in situations however where you are unable to modify thedependents
class.
-
-