org.apache.lucene.benchmark.byTask.tasks
Class TaskSequence
java.lang.Object
org.apache.lucene.benchmark.byTask.tasks.PerfTask
org.apache.lucene.benchmark.byTask.tasks.TaskSequence
- All Implemented Interfaces:
- Cloneable
- public class TaskSequence
- extends PerfTask
Sequence of parallel or sequential tasks.
Methods inherited from class org.apache.lucene.benchmark.byTask.tasks.PerfTask |
getDepth, getParams, getRunData, runAndMaybeStats, setDepth, setName, setParams, setup, shouldNeverLogAtStart, shouldNotRecordStats, tearDown |
TaskSequence
public TaskSequence(PerfRunData runData,
String name,
TaskSequence parent,
boolean parallel)
isParallel
public boolean isParallel()
- Returns:
- Returns the parallel.
getRepetitions
public int getRepetitions()
- Returns:
- Returns the repetitions.
setRepetitions
public void setRepetitions(int repetitions)
- Parameters:
repetitions
- The repetitions to set.
getParent
public TaskSequence getParent()
- Returns:
- Returns the parent.
doLogic
public int doLogic()
throws Exception
- Description copied from class:
PerfTask
- Perform the task once (ignoring repetions specification)
Return number of work items done by this task.
For indexing that can be number of docs added.
For warming that can be number of scanned items, etc.
- Specified by:
doLogic
in class PerfTask
- Returns:
- number of work items done by this task.
- Throws:
Exception
addTask
public void addTask(PerfTask task)
toString
public String toString()
- Overrides:
toString
in class PerfTask
setNoChildReport
public void setNoChildReport()
- Execute child tasks in a way that they do not reprt their time separately.
Current implementation if child tasks has child tasks of their own, those are not affected by this call.
getRate
public int getRate()
- Returns the rate per minute: how many operations should be performed in a minute.
If 0 this has no effect.
- Returns:
- the rate per min: how many operations should be performed in a minute.
setRate
public void setRate(int rate,
boolean perMin)
- Parameters:
rate
- The rate to set.
getName
public String getName()
- Overrides:
getName
in class PerfTask
- Returns:
- Returns the name.
getTasks
public ArrayList getTasks()
- Returns:
- Returns the tasks.
clone
protected Object clone()
throws CloneNotSupportedException
- Overrides:
clone
in class PerfTask
- Throws:
CloneNotSupportedException
Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.