Uses of Class
org.jenkinsci.plugins.ewm.DiskAllocationStrategy
-
Packages that use DiskAllocationStrategy Package Description org.jenkinsci.plugins.ewm org.jenkinsci.plugins.ewm.definitions org.jenkinsci.plugins.ewm.steps org.jenkinsci.plugins.ewm.strategies -
-
Uses of DiskAllocationStrategy in org.jenkinsci.plugins.ewm
Methods in org.jenkinsci.plugins.ewm that return types with arguments of type DiskAllocationStrategy Modifier and Type Method Description static ExtensionList<DiskAllocationStrategy>
DiskAllocationStrategy. all()
Constructor parameters in org.jenkinsci.plugins.ewm with type arguments of type DiskAllocationStrategy Constructor Description DiskAllocationStrategyDescriptor(Class<? extends DiskAllocationStrategy> clazz)
-
Uses of DiskAllocationStrategy in org.jenkinsci.plugins.ewm.definitions
Methods in org.jenkinsci.plugins.ewm.definitions that return DiskAllocationStrategy Modifier and Type Method Description DiskAllocationStrategy
DiskPool. getStrategy()
Constructors in org.jenkinsci.plugins.ewm.definitions with parameters of type DiskAllocationStrategy Constructor Description DiskPool(String diskPoolId, String displayName, String description, String workspaceTemplate, com.synopsys.arc.jenkinsci.plugins.jobrestrictions.restrictions.JobRestriction restriction, DiskAllocationStrategy strategy, List<Disk> disks)
-
Uses of DiskAllocationStrategy in org.jenkinsci.plugins.ewm.steps
Methods in org.jenkinsci.plugins.ewm.steps that return DiskAllocationStrategy Modifier and Type Method Description DiskAllocationStrategy
ExwsAllocateStep. getStrategy()
Methods in org.jenkinsci.plugins.ewm.steps with parameters of type DiskAllocationStrategy Modifier and Type Method Description void
ExwsAllocateStep. setStrategy(DiskAllocationStrategy strategy)
-
Uses of DiskAllocationStrategy in org.jenkinsci.plugins.ewm.strategies
Subclasses of DiskAllocationStrategy in org.jenkinsci.plugins.ewm.strategies Modifier and Type Class Description class
AbstractDiskSpeedStrategy
Base class that selects theDisk
with the highest speed provided by theAbstractDiskSpeedStrategy.getDiskSpeed(DiskInfoProvider)
methodclass
FastestReadSpeedStrategy
Selects theDisk
with the highestDiskInfoProvider.readSpeed
.class
FastestWriteSpeedStrategy
Selects theDisk
with the highestDiskInfoProvider.writeSpeed
.class
MostUsableSpaceStrategy
DiskAllocationStrategy
implementation that allocates the disk with the most usable space.
-