Package com.sun.javatest
Interface Parameters.MutableConcurrencyParameters
-
- All Superinterfaces:
Parameters.ConcurrencyParameters
- All Known Implementing Classes:
BasicParameters
,ConcurrencyInterview
,FileParameters
- Enclosing interface:
- Parameters
public static interface Parameters.MutableConcurrencyParameters extends Parameters.ConcurrencyParameters
An interface providing abstract access to an integer specifying the maximum number of tests that can be run in parallel.
-
-
Field Summary
-
Fields inherited from interface com.sun.javatest.Parameters.ConcurrencyParameters
MAX_CONCURRENCY, MIN_CONCURRENCY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setConcurrency(int conc)
Set an integer specifying the maximum number of tests that may be run in parallel.-
Methods inherited from interface com.sun.javatest.Parameters.ConcurrencyParameters
getConcurrency
-
-
-
-
Method Detail
-
setConcurrency
void setConcurrency(int conc)
Set an integer specifying the maximum number of tests that may be run in parallel.- Parameters:
conc
- an integer specifying the maximum number of tests that may be run in parallel- See Also:
Parameters.ConcurrencyParameters.getConcurrency()
-
-