Uses of Interface
alpine.event.framework.ChainableEvent
-
Packages that use ChainableEvent Package Description alpine.event.framework This package contains the Alpine event framework. -
-
Uses of ChainableEvent in alpine.event.framework
Classes in alpine.event.framework that implement ChainableEvent Modifier and Type Class Description classAbstractChainableEventProvides a default abstract implementation of an Event which supports an unbounded chain of callbacks that can be routed between differentIEventServiceimplementations.classSingletonCapableEventThis class makes it possible to specify event types which should only be processed sequentially (one at a time).Methods in alpine.event.framework that return ChainableEvent Modifier and Type Method Description ChainableEventAbstractChainableEvent. onFailure(Event onFailureEvent)Fluent method that sets the onFailure Event and returns this object.ChainableEventAbstractChainableEvent. onFailure(Event onFailureEvent, Class<? extends IEventService> onFailureEventService)Fluent method that sets the onFailure Event and returns this object.ChainableEventChainableEvent. onFailure(Event onFailureEvent)Fluent method that sets the onFailure Event and returns this object.ChainableEventChainableEvent. onFailure(Event onFailureEvent, Class<? extends IEventService> onFailureEventService)Fluent method that sets the onFailure Event and returns this object.ChainableEventAbstractChainableEvent. onSuccess(Event onSuccessEvent)Fluent method that sets the onSuccess Event and returns this object.ChainableEventAbstractChainableEvent. onSuccess(Event onSuccessEvent, Class<? extends IEventService> onSuccessEventService)Fluent method that sets the onSuccess Event and returns this object.ChainableEventChainableEvent. onSuccess(Event onSuccessEvent)Fluent method that sets the onSuccess Event and returns this object.ChainableEventChainableEvent. onSuccess(Event onSuccessEvent, Class<? extends IEventService> onSuccessEventService)Fluent method that sets the onSuccess Event and returns this object.Methods in alpine.event.framework with parameters of type ChainableEvent Modifier and Type Method Description booleanBaseEventService. isEventBeingProcessed(ChainableEvent event)Determines if the specified event is currently being processed.static booleanEvent. isEventBeingProcessed(ChainableEvent event)This method provides convenience in not having to know (or care) about whatIEventServiceimplementation is used to process an event.booleanIEventService. isEventBeingProcessed(ChainableEvent event)Determines if the specified event is currently being processed.
-