Class DefaultLauncherService
java.lang.Object
org.springframework.cloud.dataflow.server.service.impl.DefaultLauncherService
- All Implemented Interfaces:
LauncherService
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionorg.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.
-
Constructor Details
-
DefaultLauncherService
-
-
Method Details
-
getAllLaunchers
public org.springframework.data.domain.Page<Launcher> getAllLaunchers(org.springframework.data.domain.Pageable pageable) Description copied from interface:LauncherService
Retrieve all launchers that are available.- Specified by:
getAllLaunchers
in interfaceLauncherService
- Parameters:
pageable
- how the results should be returned.- Returns:
- a Page containing the available launchers.
-
getLaunchersWithSchedules
public org.springframework.data.domain.Page<Launcher> getLaunchersWithSchedules(org.springframework.data.domain.Pageable pageable) Description copied from interface:LauncherService
Retrieve all launchers that are configured to a platform scheduler.- Specified by:
getLaunchersWithSchedules
in interfaceLauncherService
- Parameters:
pageable
- how the results should be returned.- Returns:
- a Page containing the available launchers.
-