Package | Description |
---|---|
net.grinder.engine.common |
Common classes used by the Agent and Worker process implementations.
|
net.grinder.scriptengine |
Common interface used by the worker process implementation and script engines.
|
net.grinder.scriptengine.clojure |
Clojure script engine.
|
net.grinder.scriptengine.java |
Java script engine.
|
net.grinder.scriptengine.jython |
Jython script engine.
|
net.grinder.util |
Miscellaneous utility classes.
|
Constructor and Description |
---|
ScriptLocation(File file)
Constructor, based on the current working directory.
|
Modifier and Type | Class and Description |
---|---|
class |
ScriptExecutionException
Indicates a script execution problem.
|
Modifier and Type | Method and Description |
---|---|
List<? extends Instrumenter> |
ScriptEngineService.createInstrumenters()
Initialises script engine instrumentation.
|
ScriptEngineService.ScriptEngine |
ScriptEngineService.createScriptEngine(ScriptLocation script)
If the script engine service can handle the given script, it should return
a suitable implementation.
|
ScriptEngineService.WorkerRunnable |
ScriptEngineService.ScriptEngine.createWorkerRunnable()
Create a
ScriptEngineService.WorkerRunnable that will be used to run the work
for one worker thread. |
ScriptEngineService.WorkerRunnable |
ScriptEngineService.ScriptEngine.createWorkerRunnable(Object testRunner)
Create a
ScriptEngineService.WorkerRunnable that will be used to run the work
for one worker thread. |
void |
Recorder.end(boolean success)
Call after instrumented code to complete test recording.
|
void |
ScriptEngineService.ScriptEngine.shutdown()
Shut down the engine.
|
void |
Recorder.start()
Call before instrumented code to initiate test recording.
|
Modifier and Type | Method and Description |
---|---|
List<? extends Instrumenter> |
ClojureScriptEngineService.createInstrumenters()
Initialises script engine instrumentation.
|
ScriptEngineService.ScriptEngine |
ClojureScriptEngineService.createScriptEngine(ScriptLocation script)
If the script engine service can handle the given script, it should return
a suitable implementation.
|
Modifier and Type | Method and Description |
---|---|
List<? extends Instrumenter> |
JavaScriptEngineService.createInstrumenters()
Initialises script engine instrumentation.
|
ScriptEngineService.ScriptEngine |
JavaScriptEngineService.createScriptEngine(ScriptLocation script)
If the script engine service can handle the given script, it should return
a suitable implementation.
|
Modifier and Type | Method and Description |
---|---|
List<Instrumenter> |
JythonScriptEngineService.createInstrumenters()
Initialises script engine instrumentation.
|
ScriptEngineService.ScriptEngine |
JythonScriptEngineService.createScriptEngine(ScriptLocation script)
If the script engine service can handle the given script, it should return
a suitable implementation.
|
Modifier and Type | Method and Description |
---|---|
static <T> List<Class<? extends T>> |
ClassLoaderUtilities.loadRegisteredImplementations(String resourceName,
Class<T> cls)
Equivalent to
loadRegisteredImplementations(resourceName,
cls, cls.getClassLoader()) . |
static <T> List<Class<? extends T>> |
ClassLoaderUtilities.loadRegisteredImplementations(String resourceName,
Class<T> cls,
ClassLoader classLoader)
Simple mechanism for dynamically specified implementations.
|
static List<Class<?>> |
ClassLoaderUtilities.loadRegisteredImplementations(String resourceName,
ClassLoader classLoader)
Equivalent to
loadRegisteredImplementations(resourceName,
Object.class, classLoader) . |
Copyright © 2000-2014. All Rights Reserved.