Interface JvmOptionBag
-
- All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy
- All Known Subinterfaces:
JavaConfig,Profiler
public interface JvmOptionBag extends org.jvnet.hk2.config.ConfigBeanProxyFactored out the list of jvm-options from at least two other interfaces that have them: java-config and profiler. Similar toPropertyBag
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classJvmOptionBag.Duck
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(String option)List<String>getJvmOptions()StringgetStartingWith(String start)intgetXmsMegs()see #getXmxMegsintgetXmxMegs()It's observed that many a time we need the value of max heap size.voidsetJvmOptions(List<String> options)
-
-
-
Method Detail
-
setJvmOptions
void setJvmOptions(List<String> options) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getXmxMegs
@DuckTyped int getXmxMegs()
It's observed that many a time we need the value of max heap size. This is useful when deciding if a user is misconfiguring the JVM by specifying -Xmx that is smaller than -Xms. Sun's JVM for example, bails out withIncompatible minimum and maximum heap sizes specifiedwhen that happens. It's generally better to do some basic validations in those cases and that's when this method may be useful.- Returns:
- an integer specifying the actual max heap memory (-Xmx) configured. If it's specified as -Xmx2g, then 2*1024 i.e. 2048 is returned. Returns -1 if no -Xmx is specified.
-
getXmsMegs
@DuckTyped int getXmsMegs()
see #getXmxMegs- Returns:
- integer specifying -Xms in megabytes, or -1
-
contains
@DuckTyped boolean contains(String option)
-
-