Class EventDrivenRemotingProxyConfigurer<T>

java.lang.Object
org.openspaces.remoting.EventDrivenRemotingProxyConfigurer<T>

public class EventDrivenRemotingProxyConfigurer<T> extends Object
A simple programmatic configurer creating a remote asyncronous proxy

Usage example:

 IJSpace space = new UrlSpaceConfigurer("jini://*/*/mySpace")
                        .space();
 GigaSpace gigaSpace = new GigaSpaceConfigurer(space).gigaSpace();
 MyBusinessInterface proxy = new EventDrivenRemotingProxyConfigurer<MyBusinessInterface>(gigaSpace,
 MyBusinessInterface.class)
                                  .timeout(15000)
                                  .proxy();
 proxy.businessMethod(...);
 
Author:
Uri Cohen