Interface LauncherService

All Known Implementing Classes:
DefaultLauncherService

public interface LauncherService
Offers services to retrieve the launchers that are available for the Spring Cloud Data Flow instance.
Author:
Glenn Renfro
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.domain.Page<Launcher>
    getAllLaunchers(org.springframework.data.domain.Pageable pageable)
    Retrieve all launchers that are available.
    org.springframework.data.domain.Page<Launcher>
    getLaunchersWithSchedules(org.springframework.data.domain.Pageable pageable)
    Retrieve all launchers that are configured to a platform scheduler.
  • Method Details

    • getAllLaunchers

      org.springframework.data.domain.Page<Launcher> getAllLaunchers(org.springframework.data.domain.Pageable pageable)
      Retrieve all launchers that are available.
      Parameters:
      pageable - how the results should be returned.
      Returns:
      a Page containing the available launchers.
    • getLaunchersWithSchedules

      org.springframework.data.domain.Page<Launcher> getLaunchersWithSchedules(org.springframework.data.domain.Pageable pageable)
      Retrieve all launchers that are configured to a platform scheduler.
      Parameters:
      pageable - how the results should be returned.
      Returns:
      a Page containing the available launchers.