Uses of Interface
org.jboss.msc.service.Dependent
-
Packages that use Dependent Package Description org.jboss.msc.service The service container implementation itself. -
-
Uses of Dependent in org.jboss.msc.service
Classes in org.jboss.msc.service that implement Dependent Modifier and Type Class Description (package private) classOptionalDependencyAn OptionalDependency.
This class establishes a transitive dependency relationship between the dependent and the real dependency.(package private) classServiceControllerImpl<S>The service controller implementation.Fields in org.jboss.msc.service declared as Dependent Modifier and Type Field Description private Dependent[]ServiceControllerImpl.ServiceAvailableTask. childrenprivate Dependent[]ServiceControllerImpl.ServiceUnavailableTask. childrenprivate DependentOptionalDependency. dependentThe dependent on this optional dependencyprivate Dependent[][]ServiceControllerImpl.DependencyFailedTask. dependentsprivate Dependent[][]ServiceControllerImpl.DependencyRetryingTask. dependentsprivate Dependent[][]ServiceControllerImpl.DependencyStartedTask. dependentsprivate Dependent[][]ServiceControllerImpl.DependencyStoppedTask. dependentsprivate static Dependent[]ServiceControllerImpl. NO_DEPENDENTSFields in org.jboss.msc.service with type parameters of type Dependent Modifier and Type Field Description private IdentityHashSet<Dependent>ServiceRegistrationImpl. dependentsThe set of dependents on this registration.Methods in org.jboss.msc.service that return Dependent Modifier and Type Method Description private Dependent[][]ServiceControllerImpl. getDependents()Returns a compiled array of all dependents of this service instance.Methods in org.jboss.msc.service that return types with arguments of type Dependent Modifier and Type Method Description (package private) IdentityHashSet<Dependent>ServiceRegistrationImpl. getDependents()Returns the dependents set.Methods in org.jboss.msc.service with parameters of type Dependent Modifier and Type Method Description voidDependency. addDependent(Dependent dependent)Add a dependent to this dependency, establishing the dependency relation between this dependency and its dependent.voidOptionalDependency. addDependent(Dependent dependent)voidServiceRegistrationImpl. addDependent(Dependent dependent)Add a dependent to this controller.(package private) voidServiceControllerImpl. newDependent(ServiceName dependencyName, Dependent dependent)voidDependency. removeDependent(Dependent dependent)Remove a dependent from this dependency, breaking the dependency relation between this dependency and its dependent.voidOptionalDependency. removeDependent(Dependent dependent)voidServiceRegistrationImpl. removeDependent(Dependent dependent)Remove a dependent from this controller.Method parameters in org.jboss.msc.service with type arguments of type Dependent Modifier and Type Method Description private voidServiceContainerImpl. detectCircularity(IdentityHashSet<? extends Dependent> dependents, ServiceControllerImpl<?> instance, java.util.Set<ServiceControllerImpl<?>> visited, java.util.Deque<ServiceName> visitStack)Constructors in org.jboss.msc.service with parameters of type Dependent Constructor Description DependencyFailedTask(Dependent[][] dependents, boolean removeChildren)DependencyRetryingTask(Dependent[][] dependents)DependencyStartedTask(Dependent[][] dependents)DependencyStoppedTask(Dependent[][] dependents)
-