[New] ReservationExecution now has a new semaphore mode

This allows the execution policy to make sure that only x activities of a type are in execution
This commit is contained in:
Robert von Burg 2022-01-21 17:15:45 +01:00
parent 45bca35fd6
commit 4ebe301b68
1 changed files with 3 additions and 0 deletions

View File

@ -109,6 +109,7 @@ public class StrolchModelConstants {
public static final String TYPE_RELEASE = "Release";
public static final String TYPE_USE = "Use";
public static final String TYPE_WAIT = "Wait";
public static final String TYPE_JOB_COUNT_SEMAPHORE = "JobCountSemaphore";
public static final String BAG_OBJECTIVES = "Objectives";
@ -117,5 +118,7 @@ public class StrolchModelConstants {
public static final String PARAM_DURATION = "duration";
public static final String PARAM_ORDER = "order";
public static final String PARAM_ACTIVITY = "activity";
public static final String PARAM_JOB_COUNT_SEMAPHORE = "jobCountSemaphore";
public static final String PARAM_JOB_COUNT_SEMAPHORE_TYPES = "jobCountSemaphoreTypes";
}
}