Vcl.SvcMgr.TService.Dependencies

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Dependencies: TDependencies read FDependencies write SetDependencies stored AreDependenciesStored;

C++

__property TDependencies* Dependencies = {read=FDependencies, write=SetDependencies, stored=AreDependenciesStored};

Properties

Type Visibility Source Unit Parent
property published
Vcl.SvcMgr.pas
Vcl.SvcMgr.hpp
Vcl.SvcMgr TService

Description

Lists the services or load ordering groups on which the service depends.

Dependencies is a container for TDependency objects, which are dependent services or load ordering groups that must start before this service. If the container is empty, the service has no dependencies.

Dependency on a service means that this service can only run if the service it depends on is running. Dependency on a group means that this service can run if at least one member of the group is running after an attempt to start all members of the group.

See Also