|
GigaSpaces - Open Spaces | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Interface Summary | |
|---|---|
| AutowireArgumentsMarker | A marker interface enabling autowiring of arguments in a remoting service. |
| BroadcastIndicator | An interface optionally implemented by the first parameter in a remote invocation to indicate if broadcasting is enabled or not. |
| MetaArgumentsHandler | Meta argument handler can control the meta data objects that will be used for the remote invocation. |
| RemoteInvocationAspect<T> | A remoting aspect allows to wrap the remote invocaiton with specific "user" logic, for example, to add retry in case of a failure, security, or something similar. |
| RemoteResultReducer<T,Y> | A remoting result reducer (ala Map Reduce) used when working with
SyncSpaceRemotingProxyFactoryBean in
broadcast mode in order to reduce the broadcast results into a "client
side" result value. |
| RemoteRoutingHandler<T> | A general interface allowing for pluggable computation of the remoting invocation routing field. |
| RemotingInvoker | Interface representing a remote invocation. |
| ServiceExecutionAspect | A service execution callback allows to wrap the execution of "server side" service. |
| SpaceRemotingInvocation | Represents a remote invocation. |
| SpaceRemotingResult<T> | A remote invocation result holding either an exception (that occurred during the execution of remote service) or the actual result data. |
| Class Summary | |
|---|---|
| AsyncRemoteFuture<T> | A Space remoting future implementation. |
| AsyncRemotingProxyConfigurer<T> | 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 AsyncRemotingProxyConfigurer<MyBusinessInterface>(gigaSpace, MyBusinessInterface.class) .timeout(15000) .asyncProxy(); proxy.businessMethod(...); |
| AsyncSpaceRemotingEntry | Default implementation of a remoting entry that acts both as a remote invocation and a remote result. |
| AsyncSpaceRemotingProxyFactoryBean | A space async remoting proxy that forward the service execution to a remote service with the space as the transport layer. |
| ExecutorRemotingProxyConfigurer<T> | A simple programmatic configurer creating a remote executor based proxy Usage example: IJSpace space = new UrlSpaceConfigurer("jini://*/*/mySpace") .space(); GigaSpace gigaSpace = new GigaSpaceConfigurer(space).gigaSpace(); MyBusinessInterface proxy = new ExecutorRemotingProxyConfigurer<MyBusinessInterface>(gigaSpace, MyBusinessInterface.class) .broadcast(true) .voidOneWay(true) .syncProxy(); proxy.businessMethod(...); |
| ExecutorRemotingTask<T extends Serializable> | A Task that can be used to simulate remote invcation with
SpaceRemotingServiceExporter. |
| ExecutorRemotingTask.InternalExecutorResult<T extends Serializable> | A wrapper executor result that holds more information on the exception, such as the instance id. |
| ExecutorSpaceRemotingProxyFactoryBean | A space executor remoting proxy that forward the service execution to a remote service with the space as the transport layer. |
| MethodParamRemoteRoutingHandler | A default implementation of routing handler allowing to control the routing index of the remote invocation based on the remote method parameters. |
| RemotingAnnotationBeanPostProcessor | |
| RemotingProxyUtils | A set of common code shared between different remoting proxies. |
| ServiceRef | A service reference (the reference is generally the Spring bean id). |
| SpaceRemotingServiceExporter | Exports a list of services (beans) as remote services with the Space as the transport layer. |
| SyncRemoteFuture<T> | A Space remoting future implementation. |
| SyncRemotingProxyConfigurer<T> | A simple programmatic configurer creating a remote syncronous proxy Usage example: IJSpace space = new UrlSpaceConfigurer("jini://*/*/mySpace") .space(); GigaSpace gigaSpace = new GigaSpaceConfigurer(space).gigaSpace(); MyBusinessInterface proxy = new SyncRemotingProxyConfigurer<MyBusinessInterface>(gigaSpace, MyBusinessInterface.class) .broadcast(true) .voidOneWay(true) .syncProxy(); proxy.businessMethod(...); |
| SyncSpaceRemotingEntry | Default implementation of a remoting entry that acts both as a remote invocation and a remote result. |
| SyncSpaceRemotingProxyFactoryBean | A space sync remoting proxy that forward the service execution to a remote service with the space as the transport layer. |
| Exception Summary | |
|---|---|
| ExecutorRemotingTask.InternalExecutorException | A wrapper executor exception that holds more information on the exception, such as the instance id. |
| RemoteTimeoutException | A Space remoting exception caused by a timeout waiting for a result. |
| SpaceRemoteExecutionException | An extension for ExecutionException holding both the
remoteInvocation and the
remoteResult remote result. |
| Annotation Types Summary | |
|---|---|
| AsyncProxy | An annotation used to inject AsyncSpaceRemotingProxyFactoryBean
into a field. |
| AutowireArguments | An annotation enabling autowiring of arguments in a remoting service. |
| ExecutorProxy | An annotation used to inject ExecutorSpaceRemotingProxyFactoryBean
into a field. |
| RemotingService | |
| Routing | A method parameter annotation allowing to control the routing of a certain remote invocation using an anntoation. |
| SyncProxy | An annotation used to inject SyncSpaceRemotingProxyFactoryBean
into a field. |
A package including OpenSpaces support for Sync and Async remoting inspired by other Spring remoting integrations.
|
GigaSpaces - Open Spaces | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||