Class ThreadingParameters
- java.lang.Object
-
- org.apache.cxf.transport.http_jetty.ThreadingParameters
-
public class ThreadingParameters extends Object
This class holds a structure that contains parameters pertaining to the threading of a Jetty HTTP Server Engine.
-
-
Constructor Summary
Constructors Constructor Description ThreadingParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetMaxThreads()intgetMinThreads()StringgetThreadNamePrefix()booleanisSetMaxThreads()booleanisSetMinThreads()booleanisThreadNamePrefixSet()voidsetMaxThreads(int number)voidsetMinThreads(int number)voidsetThreadNamePrefix(String threadNamePrefix)
-
-
-
Method Detail
-
setMinThreads
public void setMinThreads(int number)
-
setMaxThreads
public void setMaxThreads(int number)
-
getThreadNamePrefix
public String getThreadNamePrefix()
-
setThreadNamePrefix
public void setThreadNamePrefix(String threadNamePrefix)
-
getMinThreads
public int getMinThreads()
-
getMaxThreads
public int getMaxThreads()
-
isSetMaxThreads
public boolean isSetMaxThreads()
-
isSetMinThreads
public boolean isSetMinThreads()
-
isThreadNamePrefixSet
public boolean isThreadNamePrefixSet()
-
-