Package jadex.commons.future
Class TerminableDelegationFuture<E>
- java.lang.Object
- 
- jadex.commons.future.Future<E>
- 
- jadex.commons.future.TerminableDelegationFuture<E>
 
 
- 
- All Implemented Interfaces:
- IBackwardCommandFuture,- IForwardCommandFuture,- IFuture<E>,- ITerminableFuture<E>
 
 public class TerminableDelegationFuture<E> extends Future<E> implements ITerminableFuture<E> A terminable delegation future can be used when a termination future should be delegated. This kind of future needs to be connected to the termination source (another delegation or a real future). Termination calls are forwarded to the termination source. The future remembers when terminate() was called in unconnected state and forwards the request as soon as the connection is established.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface jadex.commons.future.IForwardCommandFutureIForwardCommandFuture.Type
 
- 
 - 
Field SummaryFields Modifier and Type Field Description protected booleannotifiedFlag if source has been notified.protected booleannotifyFlag if source has to be notified.protected java.lang.ExceptionreasonException used for notification.protected ITerminableFuture<?>srcThe termination source.protected java.util.List<java.lang.Object>storedinfosThe list of stored infos, to be sent when src is connected.- 
Fields inherited from class jadex.commons.future.FutureCALLER_QUEUED, CALLER_RESUMED, CALLER_SUSPENDED, callers, creation, DEBUG, exception, first, listener, listeners, NO_STACK_COMPACTION, NONE, notcommand, notifications, result, resultavailable, STACK, undone, UNSET
 
- 
 - 
Constructor SummaryConstructors Constructor Description TerminableDelegationFuture()Create a new future.TerminableDelegationFuture(ITerminableFuture<?> src)Create a new future.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsendBackwardCommand(java.lang.Object info)Send a backward command in direction of the source.voidsetTerminationSource(ITerminableFuture<?> src)Set the termination source.voidterminate()Terminate the future.voidterminate(java.lang.Exception reason)Terminate the future and supply a custom reason.- 
Methods inherited from class jadex.commons.future.FutureabortGet, addResultListener, catchErr, catchErr, catchErr, delegate, doSetException, doSetResult, executeNotification, get, get, get, get, get, getEmptyFuture, getException, getFuture, getNotificationCommand, hasResultListener, isDone, notifyListener, notifyListener, resume, scheduleNotification, scheduleNotification, scheduleNotification, sendForwardCommand, setException, setExceptionIfUndone, setResult, setResultIfUndone, startScheduledNotifications, then, thenAccept, thenAccept, thenApply, thenApply, thenCombine, thenCompose, thenCompose
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface jadex.commons.future.IFutureaddResultListener, catchErr, catchErr, catchErr, delegate, get, get, get, get, get, getException, isDone, then, thenApply, thenApply, thenCompose, thenCompose
 
- 
 
- 
- 
- 
Field Detail- 
srcprotected ITerminableFuture<?> src The termination source.
 - 
notifyprotected boolean notify Flag if source has to be notified.
 - 
notifiedprotected boolean notified Flag if source has been notified.
 - 
reasonprotected java.lang.Exception reason Exception used for notification.
 - 
storedinfosprotected java.util.List<java.lang.Object> storedinfos The list of stored infos, to be sent when src is connected.
 
- 
 - 
Constructor Detail- 
TerminableDelegationFuturepublic TerminableDelegationFuture() Create a new future.
 - 
TerminableDelegationFuturepublic TerminableDelegationFuture(ITerminableFuture<?> src) Create a new future.
 
- 
 - 
Method Detail- 
setTerminationSourcepublic void setTerminationSource(ITerminableFuture<?> src) Set the termination source.
 - 
terminatepublic void terminate() Terminate the future. The exception will be set to FutureTerminatedException.- Specified by:
- terminatein interface- ITerminableFuture<E>
 
 - 
terminatepublic void terminate(java.lang.Exception reason) Terminate the future and supply a custom reason.- Specified by:
- terminatein interface- ITerminableFuture<E>
 
 - 
sendBackwardCommandpublic void sendBackwardCommand(java.lang.Object info) Send a backward command in direction of the source.- Specified by:
- sendBackwardCommandin interface- IBackwardCommandFuture
- Parameters:
- info- The command info.
 
 
- 
 
-