Class EventDrivenScriptingProxyConfigurer<T>

java.lang.Object
org.openspaces.remoting.scripting.EventDrivenScriptingProxyConfigurer<T>

public class EventDrivenScriptingProxyConfigurer<T> extends Object
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"));
 
Author:
Uri Cohen