Package org.openspaces.admin.gsa
Class LookupServiceOptions
java.lang.Object
org.openspaces.admin.gsa.LookupServiceOptions
LookupService process options to be started by the GridServiceAgent.- Author:
- kimchy
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionenvironmentVariable(String name, String value) Sets an environment variable that will be passed to forked process.com.gigaspaces.grid.gsa.GSProcessOptionsReturns the agent process options that represents what was set on this LUS options.Will cause JVM options added usingvmInputArgument(String)to override all the vm arguments that the JVM will start by default with.Will cause theLookupServiceto be started using a script and not a pure Java process.vmInputArgument(String vmInputArgument) Will add a JVM level argument when the process is executed using pure JVM.
-
Constructor Details
-
LookupServiceOptions
public LookupServiceOptions()Constructs a new lookup service options. By default will use JVM process execution.
-
-
Method Details
-
useScript
Will cause theLookupServiceto be started using a script and not a pure Java process. -
overrideVmInputArguments
Will cause JVM options added usingvmInputArgument(String)to override all the vm arguments that the JVM will start by default with. -
vmInputArgument
Will add a JVM level argument when the process is executed using pure JVM. For example, the memory can be controlled using-Xmx512m. -
environmentVariable
Sets an environment variable that will be passed to forked process. -
getOptions
public com.gigaspaces.grid.gsa.GSProcessOptions getOptions()Returns the agent process options that represents what was set on this LUS options.
-