Interface GremlinPlugin
-
- All Known Implementing Classes:
AbstractGremlinPlugin
,BindingsGremlinPlugin
,CoreGremlinPlugin
,ImportGremlinPlugin
,ScriptFileGremlinPlugin
public interface GremlinPlugin
A plugin interface that is used by theGremlinScriptEngineManager
to configure specialCustomizer
instances that will alter the features of anyGremlinScriptEngine
created by the manager itself.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Optional<Customizer[]>
getCustomizers()
Gets the list of allCustomizer
implementations to assign to a newGremlinScriptEngine
.Optional<Customizer[]>
getCustomizers(String scriptEngineName)
Gets the list ofCustomizer
implementations to assign to a newGremlinScriptEngine
.String
getName()
The name of the module.default boolean
requireRestart()
Some modules may require a restart of the plugin host for the classloader to pick up the features.
-
-
-
Method Detail
-
getName
String getName()
The name of the module. This name should be unique (use a namespaced approach) as naming clashes will prevent proper module operations. Modules developed by TinkerPop will be prefixed with "tinkerpop." For example, TinkerPop's implementation of Spark would be named "tinkerpop.spark". If Facebook were to do their own implementation the implementation might be called "facebook.spark".
-
requireRestart
default boolean requireRestart()
Some modules may require a restart of the plugin host for the classloader to pick up the features. This is typically true of modules that rely onClass.forName()
to dynamically instantiate classes from the root classloader (e.g. JDBC drivers that instantiate via @{code DriverManager}).
-
getCustomizers
default Optional<Customizer[]> getCustomizers()
Gets the list of allCustomizer
implementations to assign to a newGremlinScriptEngine
. This is the same as doinggetCustomizers(null)
.
-
getCustomizers
Optional<Customizer[]> getCustomizers(String scriptEngineName)
Gets the list ofCustomizer
implementations to assign to a newGremlinScriptEngine
. The implementation should filter the returnedCustomizers
according to the supplied name of the Gremlin-enabledScriptEngine
. By providing a filter,GremlinModule
developers can have the ability to target specificScriptEngines
.- Parameters:
scriptEngineName
- The name of theScriptEngine
or null to get all the availableCustomizers
-
-