Uses of Interface
adams.scripting.requesthandler.RequestHandler
-
Packages that use RequestHandler Package Description adams.scripting.command adams.scripting.command.basic adams.scripting.engine adams.scripting.requesthandler -
-
Uses of RequestHandler in adams.scripting.command
Methods in adams.scripting.command with parameters of type RequestHandler Modifier and Type Method Description void
AbstractCommand. handleRequest(RemoteScriptingEngine engine, RemoteCommandProcessor processor, RequestHandler handler)
Handles the request.void
RemoteCommand. handleRequest(RemoteScriptingEngine engine, RemoteCommandProcessor processor, RequestHandler handler)
Handles the request. -
Uses of RequestHandler in adams.scripting.command.basic
Methods in adams.scripting.command.basic with parameters of type RequestHandler Modifier and Type Method Description void
StopEngine. handleRequest(RemoteScriptingEngine engine, RemoteCommandProcessor processor, RequestHandler handler)
Handles the request. -
Uses of RequestHandler in adams.scripting.engine
Fields in adams.scripting.engine declared as RequestHandler Modifier and Type Field Description protected RequestHandler
AbstractScriptingEngine. m_RequestHandler
the request handler.Methods in adams.scripting.engine that return RequestHandler Modifier and Type Method Description protected RequestHandler
AbstractScriptingEngine. getDefaultRequestHandler()
Returns the default request handler.RequestHandler
AbstractScriptingEngine. getRequestHandler()
Returns the request handler in use.RequestHandler
RemoteScriptingEngine. getRequestHandler()
Returns the request handler in use.Methods in adams.scripting.engine with parameters of type RequestHandler Modifier and Type Method Description void
AbstractScriptingEngine. setRequestHandler(RequestHandler value)
Sets the request handler to use.void
RemoteScriptingEngine. setRequestHandler(RequestHandler value)
Sets the request handler to use. -
Uses of RequestHandler in adams.scripting.requesthandler
Classes in adams.scripting.requesthandler that implement RequestHandler Modifier and Type Class Description class
AbstractRequestHandler
Ancestor for request handlers.class
CallableActorsHandler
Forwards the requests to the specified (optional) callable actor..class
CommandDumperHandler
Saves requests as command files.class
LoggingHandler
Outputs request using the logger.class
MultiHandler
Combines multiple handlers.class
NullHandler
Does nothing.class
SimpleLogPanelRequestHandler
For logging requests.Fields in adams.scripting.requesthandler declared as RequestHandler Modifier and Type Field Description protected RequestHandler[]
MultiHandler. m_Handlers
the handlers to combine.Methods in adams.scripting.requesthandler that return RequestHandler Modifier and Type Method Description RequestHandler[]
MultiHandler. getHandlers()
Returns the handlers in use.Methods in adams.scripting.requesthandler with parameters of type RequestHandler Modifier and Type Method Description void
MultiHandler. addHandler(RequestHandler value)
Adds the handler to use.static boolean
AbstractRequestHandler. insertHandler(Object source, AbstractApplicationFrame app, RequestHandler handler)
For inserting a request handler into the scripting engine.void
MultiHandler. setHandlers(RequestHandler[] value)
Sets the handlers to use.
-