persistent

persistent
Description

Specifies that once a resource is picked from the list of alternatives this resource is used for the whole task. This is useful when several alternative resources have been specified. Normally the selected resource can change after each break. A break is an interval of at least one timeslot where no resources were available.

Contextallocate,
InheritableNoScenario Spec.No
See alsoalternative

project prj "Project" "1.0" 2003-06-05 - 2003-07-05

resource r1 "Resource 1"
resource r2 "Resource 2"

task t1 "Task 1" {
  start 2003-06-05
  effort 5d
  # Pick one of them and use it for the entire task
  allocate r1 { alternative r2 persistent }
}