|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.tools.ant.ProjectComponent | +--org.apache.tools.ant.Task | +--net.sf.antcontrib.process.Limit
Limits the amount of time that a task or set of tasks can run. This is useful for tasks that may "hang" or otherwise not complete in a timely fashion. This task is done when either the maxwait time has expired or all nested tasks are complete, whichever is first.
Developed for use with Antelope, migrated to ant-contrib Oct 2003.
Field Summary |
Fields inherited from class org.apache.tools.ant.Task |
description, location, target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
project |
Constructor Summary | |
Limit()
|
Method Summary | |
void |
addTask(org.apache.tools.ant.Task task)
Add a task to wait on. |
void |
execute()
Execute all nested tasks, but stopping execution of nested tasks after maxwait seconds or when all tasks are done, whichever is first. |
void |
setFailonerror(boolean fail)
Should the build fail if the time limit has expired on this task? Default is no. |
void |
setMaxwait(int wait)
How long to wait for all nested tasks to complete. |
Methods inherited from class org.apache.tools.ant.Task |
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, handleErrorFlush, handleErrorOutput, handleFlush, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
getProject, setProject |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Limit()
Method Detail |
public void addTask(org.apache.tools.ant.Task task) throws org.apache.tools.ant.BuildException
addTask
in interface org.apache.tools.ant.TaskContainer
task
- A task to execute
org.apache.tools.ant.BuildException
- won't happenpublic void setMaxwait(int wait)
wait
- time to wait in seconds, set to 0 to wait forever.public void setFailonerror(boolean fail)
fail
- if true, fail the build if the time limit has been reached.public void execute() throws org.apache.tools.ant.BuildException
execute
in class org.apache.tools.ant.Task
org.apache.tools.ant.BuildException
- Description of the Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |