Uses of Interface
net.sf.asyncobjects.util.callbacks.ACallable

Packages that use ACallable
net.sf.asyncobjects.util.callbacks This package contains a generic callbacks interfaces and adapter classes that help to implement them. 
net.sf.asyncobjects.util.timer This package contains generic timer interfaces and implementation of them over Timer nad TimerTask classes. 
 

Uses of ACallable in net.sf.asyncobjects.util.callbacks
 

Classes in net.sf.asyncobjects.util.callbacks that implement ACallable
 class CallableAdapter.InternalCallableAdapter
          An internal class that addapt Adapter calss to asynchronous interface.
 

Methods in net.sf.asyncobjects.util.callbacks that return ACallable
 ACallable<T> CallableAdapter.export()
           
static
<V> ACallable<V>
CallableAdapter.wrap(Callable<V> callable)
          Wrap Callable object into asynchronous object
 

Uses of ACallable in net.sf.asyncobjects.util.timer
 

Methods in net.sf.asyncobjects.util.timer that return types with arguments of type ACallable
 Promise<ACallable<Boolean>> ATimer.schedule(Date time, ATimerTask task)
          Schedule task at specified time
 Promise<ACallable<Boolean>> TimerWrapper.schedule(Date time, ATimerTask task)
           
 Promise<ACallable<Boolean>> ATimer.schedule(Date firstTime, long period, ATimerTask task)
          Schedule task after specfied time with specified period
 Promise<ACallable<Boolean>> TimerWrapper.schedule(Date firstTime, long period, ATimerTask task)
           
 Promise<ACallable<Boolean>> ATimer.schedule(long delay, ATimerTask task)
          Schedule task after specified delay
 Promise<ACallable<Boolean>> TimerWrapper.schedule(long delay, ATimerTask task)
           
 Promise<ACallable<Boolean>> ATimer.schedule(long delay, long period, ATimerTask task)
          Schedule task after specfied delay with specified period
 Promise<ACallable<Boolean>> TimerWrapper.schedule(long delay, long period, ATimerTask task)
           
 Promise<ACallable<Boolean>> ATimer.scheduleAtFixedRate(Date firstTime, long period, ATimerTask task)
          Schedule task after specfied time with fixed rage
 Promise<ACallable<Boolean>> TimerWrapper.scheduleAtFixedRate(Date firstTime, long period, ATimerTask task)
           
 Promise<ACallable<Boolean>> ATimer.scheduleAtFixedRate(long delay, long period, ATimerTask task)
          Schedule task after specfied delay with fixed rate
 Promise<ACallable<Boolean>> TimerWrapper.scheduleAtFixedRate(long delay, long period, ATimerTask task)
           
 

Methods in net.sf.asyncobjects.util.timer with parameters of type ACallable
 void ATimerTask.accepted(ACallable<Boolean> cancelAction)
          This method is called when task were accepted to timer
 void TimerTaskAdapter.InternalTimerTask.accepted(ACallable<Boolean> cancelAction)
           
 



Copyright © 2002-2007 Constantine Plotnikov. All Rights Reserved.