Uses of Interface
mandala.util.ThreadOp

Packages that use ThreadOp
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.gpf.rmi GPF-RMI implementation of JACOb. 
mandala.jacob.remote.gpf.tcp GPF-TCP implementation of JACOb. 
mandala.jacob.remote.gpf.udp GPF-UDP implementation of JACOb. 
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.util This package is a util package for anything in Mandala. 
 

Uses of ThreadOp in mandala.jacob.remote
 

Subinterfaces of ThreadOp in mandala.jacob.remote
 interface RemoteThread
          Represents a remote thread object.
 

Methods in mandala.jacob.remote that return ThreadOp
 ThreadOp RemoteActiveMap.CallRemoteExceptionInfo.getCallerThread()
           
 

Uses of ThreadOp in mandala.jacob.remote.gpf
 

Classes in mandala.jacob.remote.gpf that implement ThreadOp
 class RemoteThreadProxy
          Generic proxy for remote ThreadOp implementation.
 

Methods in mandala.jacob.remote.gpf that return ThreadOp
 ThreadOp RemoteInvocationEventsWaiterProxy.waitForCalleeThread()
           
 ThreadOp RemoteInvocationEventsWaiterProxy.waitForCalleeThread(long timeout)
           
 ThreadOp RemoteInvocationInfoProxy.getCallerThread()
           
 ThreadOp RemoteInvocationObserverProxy.getCalleeThread()
           
 

Methods in mandala.jacob.remote.gpf with parameters of type ThreadOp
 RemoteThreadProxy Exporter.exportThread(ThreadOp thread)
          Makes the given thread remotely accessible.
 void RemoteResultUpdaterProxy.setCalleeThread(ThreadOp callee)
           
 FutureFactory.FutureComponents AbstractFutureFactoryWrapper.getFutureComponents(AsynchronousReference ar, MethodOp method, java.lang.Object[] args, ThreadOp caller, Callback callBack)
           
 

Uses of ThreadOp in mandala.jacob.remote.gpf.rmi
 

Methods in mandala.jacob.remote.gpf.rmi with parameters of type ThreadOp
 RemoteThreadProxy RMIExporter.exportThread(ThreadOp thread)
           
 

Uses of ThreadOp in mandala.jacob.remote.gpf.tcp
 

Methods in mandala.jacob.remote.gpf.tcp with parameters of type ThreadOp
 RemoteThreadProxy TCPExporter.exportThread(ThreadOp thread)
           
 

Uses of ThreadOp in mandala.jacob.remote.gpf.udp
 

Methods in mandala.jacob.remote.gpf.udp with parameters of type ThreadOp
 RemoteThreadProxy UDPExporter.exportThread(ThreadOp thread)
           
 

Uses of ThreadOp in mandala.jacob.remote.rmi
 

Classes in mandala.jacob.remote.rmi that implement ThreadOp
 class RMIThread
          Java-RMI RemoteThread implementation.
 

Methods in mandala.jacob.remote.rmi with parameters of type ThreadOp
 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)
           
static RMIThread RMIThread.newServer(ThreadOp thread)
           
 

Uses of ThreadOp in mandala.rami
 

Fields in mandala.rami declared as ThreadOp
 ThreadOp AbstractFutureClient.caller
           
 

Methods in mandala.rami that return ThreadOp
 ThreadOp InvocationObserver.getCalleeThread()
          Deprecated. 

The usability of the callee thread depends on the asynchronous policy used by the AsynchronousReference implementation. For example, if a thread-pool is used, the callee thread returned may be running a completely different method than the one called. Hence, callee thread use is error prone. No replacement. Current implementations always return null. This method will be removed in the next light release.

 ThreadOp InvocationEventsWaiter.waitForCalleeThread(long timeout)
          Deprecated. 

The usability of the callee thread depends on the asynchronous policy used by the AsynchronousReference implementation. For example, if a thread-pool is used, the callee thread returned may be running a completely different method than the one called. Hence, callee thread use is error prone. No replacement. Current implementations return null immediatly. This method will be removed in the next light release.

 ThreadOp InvocationEventsWaiter.waitForCalleeThread()
          Deprecated. 

The usability of the callee thread depends on the asynchronous policy used by the AsynchronousReference implementation. For example, if a thread-pool is used, the callee thread returned may be running a completely different method than the one called. Hence, callee thread use is error prone. No replacement. Current implementations return null immediatly. This method will be removed in the next light release.

 ThreadOp InvocationInfo.getCallerThread()
          Get the thread which has been registered has interested in this object.
 ThreadOp AbstractFutureClient.getCallerThread()
           
 ThreadOp AbstractFutureClient.getCalleeThread()
           
 ThreadOp AbstractFutureClient.waitForCalleeThread()
           
 ThreadOp AbstractFutureClient.waitForCalleeThread(long timeout)
           
 

Methods in mandala.rami with parameters of type ThreadOp
 void ResultUpdater.setCalleeThread(ThreadOp callee)
          Deprecated. 

The usability of the callee thread depends on the asynchronous policy used by the AsynchronousReference implementation. For example, if a thread-pool is used, the callee thread returned may be running a completely different method than the one called. Hence, callee thread use is error prone. No replacement. Current implementations always give null. This method will be removed in the next light release.

 

Constructors in mandala.rami with parameters of type ThreadOp
AbstractFutureClient(AsynchronousReference ar, MethodOp method, java.lang.Object[] args, ThreadOp caller, Callback callback)
           
 

Uses of ThreadOp in mandala.rami.impl
 

Fields in mandala.rami.impl declared as ThreadOp
protected  ThreadOp MethodInvoker.callee
          The callee thread which runs the method invocation.
 

Methods in mandala.rami.impl with parameters of type ThreadOp
 FutureFactory.FutureComponents BasicFutureFactory.getFutureComponents(AsynchronousReference ar, MethodOp method, java.lang.Object[] args, ThreadOp caller, Callback callback)
           
 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.
 

Uses of ThreadOp in mandala.util
 

Classes in mandala.util that implement ThreadOp
 class ThreadImpl
           
 

Methods in mandala.util that return ThreadOp
static ThreadOp ThreadImpl.getInstance(java.lang.Thread thread)
           
static ThreadOp ThreadImpl.currentThread()
           
 

Methods in mandala.util with parameters of type ThreadOp
 int ThreadImpl.enumerate(ThreadOp[] tarray)
           
 



Mandala help mailing list