Interface ConsoleCustomizer
-
- All Superinterfaces:
Customizer
public interface ConsoleCustomizer extends Customizer
ACustomizer
that allows aRemoteAcceptor
to be used with a console implementation. Only oneConsoleCustomizer
can be added to a particularGremlinPlugin
.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemoteAcceptor
getRemoteAcceptor(GremlinShellEnvironment environment)
Allows a plugin to utilize features of the:remote
and:submit
commands of the Gremlin Console.
-
-
-
Method Detail
-
getRemoteAcceptor
RemoteAcceptor getRemoteAcceptor(GremlinShellEnvironment environment)
Allows a plugin to utilize features of the:remote
and:submit
commands of the Gremlin Console. This method does not need to be implemented if the plugin is not meant for the Console for some reason or if it does not intend to take advantage of those commands.
-
-