|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AsynchronousReference | |
mandala.jacob | Specification and implementation of the Java Active Container of Objects concept. |
mandala.jacob.remote | This package is dedicated to remote implementation of the active map concept. |
mandala.jacob.remote.gpf | Generic Protocol Framework (GPF) contains classes that may help implementors of new JACOb protocols. |
mandala.jacob.remote.rmi | Direct RMI implementation of JACOb. |
mandala.rami | Specification and implementation of the Reflective Asynchronous Method Invocation. |
mandala.rami.impl | Contains all classes related to Reflective Asynchronous Method Invocation. |
mandala.rami.transparency.semi | Semi-transparent asynchronous method invocation mechanism implementation. |
mandala.rami.transparency.total | Total-transparent asynchronous method invocation mechanism implementation. |
Uses of AsynchronousReference in mandala.jacob |
Classes in mandala.jacob that implement AsynchronousReference | |
class |
StoredObjectReference
Convenience class for stored object manipulation. |
Methods in mandala.jacob that return AsynchronousReference | |
protected AsynchronousReference |
SORFactory.getInstance(java.lang.Object object,
CallbackManager callbackManager,
FutureFactory futureFactory)
Gets a StoredObjectReference on the specified
object. |
AsynchronousReference |
SORFactory.newInstance(ConstructorOp constructor,
java.lang.Object[] args)
Returns a StoredObjectReference on a new object. |
Uses of AsynchronousReference in mandala.jacob.remote |
Methods in mandala.jacob.remote that return AsynchronousReference | |
AsynchronousReference |
RemoteActiveMap.CallRemoteExceptionInfo.getAsynchronousReference()
|
Uses of AsynchronousReference in mandala.jacob.remote.gpf |
Methods in mandala.jacob.remote.gpf that return AsynchronousReference | |
AsynchronousReference |
RemoteInvocationInfoProxy.getAsynchronousReference()
|
Methods in mandala.jacob.remote.gpf with parameters of type AsynchronousReference | |
FutureFactory.FutureComponents |
AbstractFutureFactoryWrapper.getFutureComponents(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callBack)
|
Uses of AsynchronousReference in mandala.jacob.remote.rmi |
Methods in mandala.jacob.remote.rmi with parameters of type AsynchronousReference | |
FutureFactory.FutureComponents |
RMIFutureFactoryWrapper.getFutureComponents(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callBack)
|
FutureFactory.FutureComponents |
RMIDistributedFutureFactory.getFutureComponents(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callBack)
|
Uses of AsynchronousReference in mandala.rami |
Subinterfaces of AsynchronousReference in mandala.rami | |
interface |
AsynchronousReferencePair
An AsynchronousReferencePair is an asynchronous reference
wich represents a pair of asynchronous references. |
Classes in mandala.rami that implement AsynchronousReference | |
class |
AbstractAsynchronousReference
Abstract implementation of the AsynchronousReference
interface. |
Fields in mandala.rami declared as AsynchronousReference | |
AsynchronousReference |
AbstractFutureClient.ar
|
Methods in mandala.rami that return AsynchronousReference | |
AsynchronousReference |
Framework.Factory.getInstance(java.lang.Object object)
Returns the AsynchronousReference which references
the specified object. |
AsynchronousReference |
Framework.Factory.newInstance(ConstructorOp c,
java.lang.Object[] args)
Returns a new AsynchronousReference which references
the object created with the given constructor and parameter. |
AsynchronousReference |
AsynchronousReferencePair.getHead()
Returns the head of this asynchronous reference pair. |
AsynchronousReference |
AsynchronousReferencePair.getTail()
Returns the tail of this asynchronous reference pair. |
AsynchronousReference |
InvocationInfo.getAsynchronousReference()
Returns the AsynchronousReference involved in an
asynchronous method invocation. |
AsynchronousReference |
AbstractFutureClient.getAsynchronousReference()
|
AsynchronousReference |
AbstractARFactory.getInstance(java.lang.Object object)
|
protected abstract AsynchronousReference |
AbstractARFactory.getInstance(java.lang.Object object,
CallbackManager callbackManager)
Gets an asynchronous reference on the specified object. |
AsynchronousReference |
AbstractARFactory.newInstance(ConstructorOp c,
java.lang.Object[] args)
|
Constructors in mandala.rami with parameters of type AsynchronousReference | |
AbstractFutureClient(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callback)
|
Uses of AsynchronousReference in mandala.rami.impl |
Classes in mandala.rami.impl that implement AsynchronousReference | |
class |
AsynchronousReferenceImpl
Implementation of the AsynchronousReference interface. |
class |
AsynchronousReferencePairImpl
Direct implementation of the AsynchronousReferencePair
class. |
Fields in mandala.rami.impl declared as AsynchronousReference | |
protected AsynchronousReference |
AsynchronousReferencePairImpl.head
|
Methods in mandala.rami.impl that return AsynchronousReference | |
AsynchronousReference |
ARPFactory.getInstance(java.lang.Object object,
CallbackManager callbackManager)
|
AsynchronousReference |
ARPFactory.newInstance(ConstructorOp c,
java.lang.Object[] args)
|
AsynchronousReference |
AbstractARImplFactory.getInstance(java.lang.Object object)
|
AsynchronousReference |
AbstractARImplFactory.getInstance(java.lang.Object object,
CallbackManager callbackManager)
|
protected abstract AsynchronousReference |
AbstractARImplFactory.getInstance(java.lang.Object object,
CallbackManager callbackManager,
FutureFactory futureFactory)
Gets an asynchronous reference on the specified object. |
AsynchronousReference |
AsynchronousReferencePairImpl.getHead()
|
AsynchronousReference |
AsynchronousReferencePairImpl.getTail()
|
protected AsynchronousReference |
ARFactory.getInstance(java.lang.Object object,
CallbackManager callBackManager,
FutureFactory futureFactory)
|
Methods in mandala.rami.impl with parameters of type AsynchronousReference | |
FutureFactory.FutureComponents |
BasicFutureFactory.getFutureComponents(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callback)
|
static AsynchronousReferencePairImpl |
AsynchronousReferencePairImpl.getInstance(AsynchronousReference head,
CallbackManager callbackManager)
Gets the AsynchronousReferencePairImpl instance which
handles reflexive asynchronous method invocation on the specified pair
of asynchronous reference. |
FutureFactory.FutureComponents |
FutureFactory.getFutureComponents(AsynchronousReference ar,
MethodOp method,
java.lang.Object[] args,
ThreadOp caller,
Callback callback)
Returns the FutureComponents of the specified reflexive
asynchronous method invocation. |
Constructors in mandala.rami.impl with parameters of type AsynchronousReference | |
AsynchronousReferencePairImpl(AsynchronousReference head,
CallbackManager callbackManager)
Creates a new AsynchronousReferencePairImpl
instance. |
Uses of AsynchronousReference in mandala.rami.transparency.semi |
Methods in mandala.rami.transparency.semi that return AsynchronousReference | |
AsynchronousReference |
SemiTransparentAsynchronousProxy.getAsynchronousReference()
|
Uses of AsynchronousReference in mandala.rami.transparency.total |
Fields in mandala.rami.transparency.total declared as AsynchronousReference | |
protected AsynchronousReference |
AsynchronousProxyInvocationHandler.asynchronousReference
|
Methods in mandala.rami.transparency.total that return AsynchronousReference | |
AsynchronousReference |
AsynchronousProxyInvocationHandler.getAsynchronousReference()
|
Methods in mandala.rami.transparency.total with parameters of type AsynchronousReference | |
static AsynchronousProxyInvocationHandler |
AsynchronousProxyInvocationHandler.getInstance(AsynchronousReference asynchronousReference)
|
Constructors in mandala.rami.transparency.total with parameters of type AsynchronousReference | |
AsynchronousProxyInvocationHandler(AsynchronousReference asynchronousReference)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |