Interface ServerWarmUpExtension
-
- All Known Implementing Classes:
BuildDataStorageWarmUp
public interface ServerWarmUpExtensionCreated by Andrey Titov on 6/28/17.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoWarmUp(Collection<SBuildType> buildTypes)This method will be executed during server warm-up inBuildTypeDataPrefetcher.StringgetDescription()
-
-
-
Method Detail
-
getDescription
String getDescription()
- Returns:
- a description for this warm-up which will be used for logging and thread name patching.
-
doWarmUp
void doWarmUp(@NotNull Collection<SBuildType> buildTypes)This method will be executed during server warm-up inBuildTypeDataPrefetcher. Warm-up process is executed in one separate thread in normal priority pool.- Parameters:
buildTypes- A collection of build types which are commonly used (seeRecentlyUsedBuildTypes)
-
-