|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Runner in net.sf.sparql.benchmarking.monitoring |
---|
Methods in net.sf.sparql.benchmarking.monitoring with parameters of type Runner | ||
---|---|---|
|
XmlProgressListener.afterOperation(Runner<T> runner,
T options,
Operation operation,
OperationRun run)
|
|
|
StreamProgressListener.afterOperation(Runner<T> runner,
T options,
Operation operation,
OperationRun run)
|
|
|
ProgressListener.afterOperation(Runner<T> runner,
T options,
Operation operation,
OperationRun run)
Invoked after each run of an operation |
|
|
CsvProgressListener.afterOperation(Runner<T> runner,
T options,
Operation operation,
OperationRun run)
Does nothing as this listener discards individual operation run statistics |
|
|
XmlProgressListener.afterOperationMix(Runner<T> runner,
T options,
OperationMix mix,
OperationMixRun run)
|
|
|
StreamProgressListener.afterOperationMix(Runner<T> runner,
T options,
OperationMix mix,
OperationMixRun run)
|
|
|
ProgressListener.afterOperationMix(Runner<T> runner,
T options,
OperationMix mix,
OperationMixRun run)
Invoked after each run of an operation mix |
|
|
CsvProgressListener.afterOperationMix(Runner<T> runner,
T options,
OperationMix mix,
OperationMixRun run)
Handles the Mix progress event by recording the run statistics for later printing to the CSV file |
|
|
XmlProgressListener.beforeOperation(Runner<T> runner,
T options,
Operation operation)
Does nothing as this listener discards individual operation run statistics |
|
|
StreamProgressListener.beforeOperation(Runner<T> runner,
T options,
Operation operation)
|
|
|
ProgressListener.beforeOperation(Runner<T> runner,
T options,
Operation operation)
Invoked before each run of an operation |
|
|
CsvProgressListener.beforeOperation(Runner<T> runner,
T options,
Operation operation)
Does nothing as this listener discards individual operation run statistics |
|
|
XmlProgressListener.beforeOperationMix(Runner<T> runner,
T options,
OperationMix mix)
|
|
|
StreamProgressListener.beforeOperationMix(Runner<T> runner,
T options,
OperationMix mix)
|
|
|
ProgressListener.beforeOperationMix(Runner<T> runner,
T options,
OperationMix mix)
Invoked before each run of an operation mix |
|
|
CsvProgressListener.beforeOperationMix(Runner<T> runner,
T options,
OperationMix mix)
|
|
|
XmlProgressListener.finish(Runner<T> runner,
T options,
boolean ok)
Handles the finished event by printing statistics to the XML file |
|
|
StreamProgressListener.finish(Runner<T> runner,
T options,
boolean ok)
|
|
|
ProgressListener.finish(Runner<T> runner,
T options,
boolean ok)
Invoked when test runs finish |
|
|
CsvProgressListener.finish(Runner<T> runner,
T options,
boolean ok)
Handles the finished event by printing relevant statistics to the CSV file |
|
|
XmlProgressListener.progress(Runner<T> runner,
T options,
String message)
|
|
|
StreamProgressListener.progress(Runner<T> runner,
T options,
String message)
|
|
|
ProgressListener.progress(Runner<T> runner,
T options,
String message)
Invoked when an informational progress message is available |
|
|
CsvProgressListener.progress(Runner<T> runner,
T options,
String message)
Does nothing as this listener discards informational messages |
|
|
XmlProgressListener.start(Runner<T> runner,
T options)
Handles the started event by printing run configuration to the XML file |
|
|
StreamProgressListener.start(Runner<T> runner,
T options)
|
|
|
ProgressListener.start(Runner<T> runner,
T options)
Invoked when test runs start |
|
|
CsvProgressListener.start(Runner<T> runner,
T options)
Handles the started event by preparing a record of the run configuration which will eventually be printed to the CSV file |
Uses of Runner in net.sf.sparql.benchmarking.operations |
---|
Methods in net.sf.sparql.benchmarking.operations that return Runner | |
---|---|
protected Runner<T> |
AbstractOperationCallable.getRunner()
Gets the runner |
Methods in net.sf.sparql.benchmarking.operations with parameters of type Runner | ||
---|---|---|
|
Operation.canRun(Runner<T> runner,
T options)
Report whether the operation can run based on the available options |
|
|
Operation.createCallable(Runner<T> runner,
T options)
Creates the callable for running the operation in a background thread |
Constructors in net.sf.sparql.benchmarking.operations with parameters of type Runner | |
---|---|
AbstractOperationCallable(Runner<T> runner,
T options)
Creates a new operation callable |
Uses of Runner in net.sf.sparql.benchmarking.operations.gsp |
---|
Methods in net.sf.sparql.benchmarking.operations.gsp with parameters of type Runner | ||
---|---|---|
|
AbstractGSPOperation.canRun(Runner<T> runner,
T options)
|
|
|
GSPPutOperation.createCallable(Runner<T> runner,
T options)
|
|
|
GSPPostOperation.createCallable(Runner<T> runner,
T options)
|
|
|
GSPHeadOperation.createCallable(Runner<T> runner,
T options)
|
|
|
GSPGetOperation.createCallable(Runner<T> runner,
T options)
|
|
|
GSPDeleteOperation.createCallable(Runner<T> runner,
T options)
|
Constructors in net.sf.sparql.benchmarking.operations.gsp with parameters of type Runner | |
---|---|
AbstractGSPCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractGSPCallable(Runner<T> runner,
T options,
String uri)
Creates a new callable |
|
GSPDeleteCallable(Runner<T> runner,
T options)
Creates a new callable that operates on the default graph |
|
GSPDeleteCallable(Runner<T> runner,
T options,
String uri)
Creates a new callable that operates on a specific graph |
|
GSPGetCallable(Runner<T> runner,
T options)
Creates a new callable |
|
GSPGetCallable(Runner<T> runner,
T options,
String uri)
Creates a new callable |
|
GSPHeadCallable(Runner<T> runner,
T options)
Creates a new callable that operates on the default graph |
|
GSPHeadCallable(Runner<T> runner,
T options,
String uri)
Creates a new callable that operates on a specific graph |
|
GSPPostCallable(Runner<T> runner,
T options,
Model data)
Creates a new callable that operates on the default graph |
|
GSPPostCallable(Runner<T> runner,
T options,
Model data,
String uri)
Creates a new callable that operates on a specific graph |
|
GSPPutCallable(Runner<T> runner,
T options,
Model data)
Creates a new callable that operates on the default graph |
|
GSPPutCallable(Runner<T> runner,
T options,
Model data,
String uri)
Creates a new callable that operates on a specific graph |
Uses of Runner in net.sf.sparql.benchmarking.operations.parameterized |
---|
Methods in net.sf.sparql.benchmarking.operations.parameterized with parameters of type Runner | ||
---|---|---|
|
ParameterizedUpdateOperation.canRun(Runner<T> runner,
T options)
|
|
|
ParameterizedQueryOperation.canRun(Runner<T> runner,
T options)
|
|
|
InMemoryParameterizedUpdateOperation.canRun(Runner<T> runner,
T options)
|
|
|
InMemoryParameterizedQueryOperation.canRun(Runner<T> runner,
T options)
|
|
|
InMemoryParameterizedUpdateOperation.createCallable(Runner<T> runner,
T options)
|
|
|
InMemoryParameterizedQueryOperation.createCallable(Runner<T> runner,
T options)
|
|
|
AbstractParameterizedUpdateOperation.createCallable(Runner<T> runner,
T options)
|
|
|
AbstractParameterizedQueryOperation.createCallable(Runner<T> runner,
T options)
|
Uses of Runner in net.sf.sparql.benchmarking.operations.parameterized.nvp |
---|
Methods in net.sf.sparql.benchmarking.operations.parameterized.nvp with parameters of type Runner | ||
---|---|---|
|
ParameterizedNvpUpdateOperation.createCallable(Runner<T> runner,
T options)
|
|
|
ParameterizedNvpQueryOperation.createCallable(Runner<T> runner,
T options)
|
Uses of Runner in net.sf.sparql.benchmarking.operations.query |
---|
Methods in net.sf.sparql.benchmarking.operations.query with parameters of type Runner | ||
---|---|---|
|
DatasetSizeOperation.canRun(Runner<T> runner,
T options)
|
|
|
AbstractRemoteQueryOperation.canRun(Runner<T> runner,
T options)
|
|
|
AbstractInMemoryQueryOperation.canRun(Runner<T> runner,
T options)
|
|
|
DatasetSizeOperation.createCallable(Runner<T> runner,
T options)
|
|
|
AbstractRemoteQueryOperation.createCallable(Runner<T> runner,
T options)
|
|
|
AbstractInMemoryQueryOperation.createCallable(Runner<T> runner,
T options)
|
Uses of Runner in net.sf.sparql.benchmarking.operations.query.callables |
---|
Constructors in net.sf.sparql.benchmarking.operations.query.callables with parameters of type Runner | |
---|---|
AbstractInMemoryQueryCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractQueryCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractRemoteQueryCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractScalarValueCallable(Runner<T> runner,
T options,
TCallable callable,
String var)
Creates a new scalar value callable |
|
InMemoryQueryCallable(Query q,
Runner<T> runner,
T options)
Creates a new Query Runner |
|
LongValueCallable(Runner<T> runner,
T options,
TCallable callable,
String var)
Creates a new callable |
|
RemoteQueryCallable(Query q,
Runner<T> runner,
T options)
Creates a new Query Runner |
|
WrapperQueryCallable(Runner<T> runner,
T options,
TCallable callable)
Creates a new decorator |
Uses of Runner in net.sf.sparql.benchmarking.operations.query.nvp |
---|
Methods in net.sf.sparql.benchmarking.operations.query.nvp with parameters of type Runner | ||
---|---|---|
|
FixedNvpQueryOperation.createCallable(Runner<T> runner,
T options)
|
Constructors in net.sf.sparql.benchmarking.operations.query.nvp with parameters of type Runner | |
---|---|
NvpQueryCallable(Query q,
Runner<T> runner,
T options,
Map<String,List<String>> nvps)
Creates a new callable |
Uses of Runner in net.sf.sparql.benchmarking.operations.update |
---|
Methods in net.sf.sparql.benchmarking.operations.update with parameters of type Runner | ||
---|---|---|
|
InMemoryFixedUpdateOperation.canRun(Runner<T> runner,
T options)
|
|
|
FixedUpdateOperation.canRun(Runner<T> runner,
T options)
|
|
|
InMemoryFixedUpdateOperation.createCallable(Runner<T> runner,
T options)
|
|
|
FixedUpdateOperation.createCallable(Runner<T> runner,
T options)
|
Uses of Runner in net.sf.sparql.benchmarking.operations.update.callables |
---|
Constructors in net.sf.sparql.benchmarking.operations.update.callables with parameters of type Runner | |
---|---|
AbstractInMemoryUpdateCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractRemoteUpdateCallable(Runner<T> runner,
T options)
Creates a new callable |
|
AbstractUpdateCallable(Runner<T> runner,
T options)
Creates a new callable |
|
InMemoryUpdateCallable(UpdateRequest update,
Runner<T> runner,
T options)
Creates a new update runner |
|
RemoteUpdateCallable(UpdateRequest update,
Runner<T> runner,
T options)
Creates a new update runner |
Uses of Runner in net.sf.sparql.benchmarking.operations.update.nvp |
---|
Methods in net.sf.sparql.benchmarking.operations.update.nvp with parameters of type Runner | ||
---|---|---|
|
FixedNvpUpdateOperation.createCallable(Runner<T> runner,
T options)
|
Constructors in net.sf.sparql.benchmarking.operations.update.nvp with parameters of type Runner | |
---|---|
NvpUpdateCallable(UpdateRequest update,
Runner<T> runner,
T options,
Map<String,List<String>> nvps)
Creates a new callable |
Uses of Runner in net.sf.sparql.benchmarking.operations.util |
---|
Methods in net.sf.sparql.benchmarking.operations.util with parameters of type Runner | ||
---|---|---|
|
SleepOperation.canRun(Runner<T> runner,
T options)
|
|
|
MixOperation.canRun(Runner<T> runner,
T options)
|
|
|
SleepOperation.createCallable(Runner<T> runner,
T options)
|
|
|
MixOperation.createCallable(Runner<T> runner,
T options)
|
Constructors in net.sf.sparql.benchmarking.operations.util with parameters of type Runner | |
---|---|
MixOperationCallable(Runner<T> runner,
T options,
OperationMix mix,
boolean randomOrder)
Creates a new callable |
|
NoOpCallable(Runner<T> runner,
T options,
OperationRun runInfo)
Creates a new callable |
|
SleepCallable(long sleep,
Runner<T> runner,
T options)
Creates a new sleep callable |
Uses of Runner in net.sf.sparql.benchmarking.parallel |
---|
Methods in net.sf.sparql.benchmarking.parallel that return Runner | |
---|---|
Runner<T> |
ParallelClientManager.getRunner()
Gets the runner |
Runner<T> |
AbstractParallelClientManager.getRunner()
|
Constructors in net.sf.sparql.benchmarking.parallel with parameters of type Runner | |
---|---|
AbstractParallelClientManager(Runner<T> runner,
T options)
Creates a new parallel client manager |
Uses of Runner in net.sf.sparql.benchmarking.parallel.impl |
---|
Methods in net.sf.sparql.benchmarking.parallel.impl that return Runner | |
---|---|
Runner<StressOptions> |
StressTestParallelClientManager.getRunner()
|
Constructors in net.sf.sparql.benchmarking.parallel.impl with parameters of type Runner | |
---|---|
BenchmarkParallelClientManager(Runner<T> runner,
T options)
Creates a new Parallel Client Manager |
|
OperationMixCallable(Runner<T> runner,
T options)
Creates a new operation mix runner |
|
OperationMixTask(Runner<T> runner,
T options)
Creates a new Task |
|
SoakTestParallelClientManager(Runner<SoakOptions> runner,
SoakOptions options)
Creates a new Parallel Client Manager |
|
StressTestParallelClientManager(Runner<StressOptions> runner,
StressOptions options)
Creates a new Parallel Client Manager |
Uses of Runner in net.sf.sparql.benchmarking.runners |
---|
Classes in net.sf.sparql.benchmarking.runners that implement Runner | |
---|---|
class |
AbstractRunner<T extends Options>
Abstract implementation of a runner providing common halting and progress reporting functionality |
class |
BenchmarkRunner
A benchmark runner |
class |
SmokeRunner
A smoke test runner |
class |
SoakRunner
A soak test runner |
class |
StressRunner
A stress test runner |
Uses of Runner in net.sf.sparql.benchmarking.runners.mix |
---|
Methods in net.sf.sparql.benchmarking.runners.mix with parameters of type Runner | ||
---|---|---|
|
OperationMixRunner.run(Runner<T> runner,
T options,
OperationMix mix)
Performs a operation mix run returning the statistics as a OperationMixRun |
|
|
AbstractOperationMixRunner.run(Runner<T> runner,
T options,
OperationMix mix)
|
|
protected
|
AbstractOperationMixRunner.runOp(Runner<T> runner,
T options,
Operation op)
Runs an operation based on the configured OperationRunner using
the DefaultOperationRunner if none is configured |
Uses of Runner in net.sf.sparql.benchmarking.runners.operations |
---|
Methods in net.sf.sparql.benchmarking.runners.operations with parameters of type Runner | ||
---|---|---|
|
RetryingOperationRunner.run(Runner<T> runner,
T options,
Operation op)
|
|
|
OperationRunner.run(Runner<T> runner,
T options,
Operation op)
Runs the operation returning the statistics as an OperationRun |
|
|
DefaultOperationRunner.run(Runner<T> runner,
T options,
Operation op)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |