Class Summary |
AbstractLocalScriptExecutor<T> |
|
DefaultScriptingExecutor |
A Default "server" side script executor. |
EventDrivenScriptingProxyConfigurer<T> |
A simple programmatic configurer creating a remote event driven scripting proxy
Usage example:
IJSpace space = new UrlSpaceConfigurer("jini://*/*/mySpace")
.space();
GigaSpace gigaSpace = new GigaSpaceConfigurer(space).gigaSpace();
ScriptingExecutor executor = new EventDrivenScriptingProxyConfigurer(gigaSpace)
.timeout(15000)
.scriptingExecutor();
Integer result = executor.execute(new StaticScript()
.type("groovy")
.name("myScript")
.script("return 1"));
|
ExecutorScriptingProxyConfigurer<T> |
A simple programmatic configurer creating a remote executor scripting proxy. |
GroovyLocalScriptExecutor |
Groovy local script executor. |
JRubyLocalScriptExecutor |
JRuby local script executor. |
JRubyLocalScriptExecutor.JRubyCompiledScript |
|
Jsr223LocalScriptExecutor |
Java 6 (JSR 223) script executor. |
LazyLoadingRemoteInvocationAspect |
The lazy loading remote invocation aspect wraps the actual remote invocation and adds support
for LazyLoadingScript s. |
ResourceLazyLoadingScript |
A resource lazy loading script is a lazy loading script that uses Spring abstraction
on top of resources on top of a resource. |
ScriptingMetaArgumentsHandler |
|
ScriptingRemoteRoutingHandler |
A remoting routing handler that uses Script.getRouting() in order to
computer the routing index. |
StaticResourceScript |
A static script that uses Spring Resource and ResourceLoader to load
a given script (for example, from the classpath). |
StaticScript |
A script that holds the actual script as a String. |