Class Proxy
-
- All Implemented Interfaces:
-
java.lang.Runnable
public class Proxy extends Thread
Thread to handle one client request. Gets the request from the client and passes it on to the server, then sends the response back to the client. Information about the request and response is stored so it can be used in a JMeter test plan.
-
-
Field Summary
Fields Modifier and Type Field Description public volatile String
name
public int
priority
public ClassLoader
contextClassLoader
public final static int
MIN_PRIORITY
public final static int
NORM_PRIORITY
public final static int
MAX_PRIORITY
public volatile Thread.UncaughtExceptionHandler
uncaughtExceptionHandler
public static volatile Thread.UncaughtExceptionHandler
defaultUncaughtExceptionHandler
-
Constructor Summary
Constructors Constructor Description Proxy()
Default constructor - used by newInstance call in Daemon
-
Method Summary
Modifier and Type Method Description void
run()
Main processing method for the Proxy object static void
setCounter(int value)
Set the counter for all registered SamplerCreatorFactorys -
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, start, stop, suspend, toString, yield
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
run
void run()
Main processing method for the Proxy object
-
setCounter
static void setCounter(int value)
Set the counter for all registered SamplerCreatorFactorys
- Parameters:
value
- to be initialized
-
-
-
-