The TaskJuggler Manual | ||
---|---|---|
Prev | Chapter 7. Property Reference | Next |
value
>
<unit
>gaplength
<value >
<unit >
| |||
---|---|---|---|
Description | Specifies the minimum required gap between the end of a preceding task and the start of this task, or the start of a following task and the end of this task. This is working time, not calendar time. 7d means 7 working days, not one week. Whether a day is considered a working day or not depends on the defined working hours and global vacations. | ||
Attributes | Name | Type | Description |
value | REAL | ||
unit | UNIT | ||
Context | depends, precedes, | ||
Inheritable | Yes | Scenario Spec. | Yes |
See also | gapduration, length |
project prj "Example Project" "1.0" 2005-05-29 - 2005-07-01 task t1 "Task 1" { start 2005-05-29 } task t2 "Task 2" { # starts 5 calendar days after t1 depends !t1 { gapduration 5d } } task t3 "Task 3" { # starts 5 working days after t1 depends !t1 { gaplength 5d } }