on_start_all Subroutine

private subroutine on_start_all(self)

Call on_start() on all registered features.

Type Bound

feature_manager_t

Arguments

Type IntentOptional Attributes Name
class(feature_manager_t), intent(inout) :: self

Calls

proc~~on_start_all~~CallsGraph proc~on_start_all feature_manager_t%on_start_all proc~feat_noop watch_feature_t%feat_noop proc~on_start_all->proc~feat_noop

Called by

proc~~on_start_all~~CalledByGraph proc~on_start_all feature_manager_t%on_start_all proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~on_start_all

Source Code

   subroutine on_start_all(self)
      class(feature_manager_t), intent(inout) :: self
      integer :: i
      if (.not. allocated(self%feat)) return
      do i = 1, size(self%feat)
         if (allocated(self%feat(i)%p)) call self%feat(i)%p%on_start()
      end do
   end subroutine on_start_all