public static final class GroovyCompilerGremlinPlugin.Builder extends Object
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
GroovyCompilerGremlinPlugin.Builder |
classMapCacheSpecification(String cacheSpec)
Sets the cache specification for the class map which holds compiled scripts and uses the comma separated
syntax of the caffeine cache for configuration.
|
GroovyCompilerGremlinPlugin.Builder |
compilation(GroovyCompilerGremlinPlugin.Compilation compilation) |
GroovyCompilerGremlinPlugin.Builder |
compilation(String compilation) |
GroovyCompilerGremlinPlugin.Builder |
compilerConfigurationOptions(Map<String,Object> keyValues) |
GroovyCompilerGremlinPlugin |
create() |
GroovyCompilerGremlinPlugin.Builder |
enableInterpreterMode(boolean interpreterMode) |
GroovyCompilerGremlinPlugin.Builder |
enableThreadInterrupt(boolean threadInterrupt) |
GroovyCompilerGremlinPlugin.Builder |
expectedCompilationTime(int timeInMillis)
If the time it takes to compile a script exceeds the specified time then a warning is written to the logs.
|
GroovyCompilerGremlinPlugin.Builder |
extensions(String extensions) |
GroovyCompilerGremlinPlugin.Builder |
globalFunctionCacheEnabled(boolean enabled)
Determines if the global function cache in the script engine is enabled or not.
|
GroovyCompilerGremlinPlugin.Builder |
timedInterrupt(long timeInMillis)
Introduces timed checks to loops and other portions of a script to provide an interrupt for a long running
script.
|
public GroovyCompilerGremlinPlugin.Builder expectedCompilationTime(int timeInMillis)
public GroovyCompilerGremlinPlugin.Builder enableInterpreterMode(boolean interpreterMode)
public GroovyCompilerGremlinPlugin.Builder compilerConfigurationOptions(Map<String,Object> keyValues)
public GroovyCompilerGremlinPlugin.Builder enableThreadInterrupt(boolean threadInterrupt)
public GroovyCompilerGremlinPlugin.Builder timedInterrupt(long timeInMillis)
evaluationTimeout
which performs a similar task but in a more complete way specific to the
server. Configuring both may lead to inconsistent timeout errors returning from the server. This
configuration should only be used if configuring a standalone instance fo the GremlinGroovyScriptEngine
.public GroovyCompilerGremlinPlugin.Builder compilation(GroovyCompilerGremlinPlugin.Compilation compilation)
public GroovyCompilerGremlinPlugin.Builder compilation(String compilation)
public GroovyCompilerGremlinPlugin.Builder extensions(String extensions)
public GroovyCompilerGremlinPlugin.Builder classMapCacheSpecification(String cacheSpec)
initialCapacity=[integer]
: sets Caffeine.initialCapacity
.
maximumSize=[long]
: sets Caffeine.maximumSize
.
maximumWeight=[long]
: sets Caffeine.maximumWeight
.
expireAfterAccess=[duration]
: sets Caffeine.expireAfterAccess
.
expireAfterWrite=[duration]
: sets Caffeine.expireAfterWrite
.
refreshAfterWrite=[duration]
: sets Caffeine.refreshAfterWrite
.
weakKeys
: sets Caffeine.weakKeys
.
weakValues
: sets Caffeine.weakValues
.
softValues
: sets Caffeine.softValues
.
recordStats
: sets Caffeine.recordStats
.
maximumSize
and maximumWeight
weakValues
and softValues
public GroovyCompilerGremlinPlugin.Builder globalFunctionCacheEnabled(boolean enabled)
public GroovyCompilerGremlinPlugin create()
Copyright © 2013–2022 Apache Software Foundation. All rights reserved.