Uses of Interface
alpine.event.framework.Event
-
Packages that use Event Package Description alpine.event This package contains Events used by the Alpine event framework.alpine.event.framework This package contains the Alpine event framework.alpine.tasks This package contains tasks that may be executed by the Alpine event framework. -
-
Uses of Event in alpine.event
Classes in alpine.event that implement Event Modifier and Type Class Description classLdapSyncEventAn Event implementation specific for LDAP synchronization tasks. -
Uses of Event in alpine.event.framework
Subinterfaces of Event in alpine.event.framework Modifier and Type Interface Description interfaceChainableEventThe ChainableEvent interface defines methods necessary to support an unbounded chain of callbacks and event between differentIEventServiceimplementations.interfaceUnblockedEventThe UnblockedEvent interface extends an Event and is treated a bit differently as a result.Classes in alpine.event.framework that implement Event 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 Event Modifier and Type Method Description EventChainLink. getFailureEvent()EventChainLink. getSuccessEvent()Methods in alpine.event.framework with parameters of type Event Modifier and Type Method Description static voidEvent. dispatch(Event event)The dispath method provides convenience in not having to know (or care) about whatIEventServiceimplementation is used to process an event.booleanBaseEventService. hasSubscriptions(Event event)Determines if the specified event is able to be processed by the EventService.booleanIEventService. hasSubscriptions(Event event)Determines if the specified event is able to be processed by the EventService.voidSubscriber. inform(Event event)Defines a method to inform subscribers who implement this interface.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.ChainLinkChainLink. onFailure(Event onFailureEvent)ChainLinkChainLink. onFailure(Event onFailureEvent, Class<? extends IEventService> onFailureEventService)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.ChainLinkChainLink. onSuccess(Event onSuccessEvent)ChainLinkChainLink. onSuccess(Event onSuccessEvent, Class<? extends IEventService> onSuccessEventService)voidBaseEventService. publish(Event event)Publishes events.voidIEventService. publish(Event event)Publishes events.Method parameters in alpine.event.framework with type arguments of type Event Modifier and Type Method Description voidBaseEventService. subscribe(Class<? extends Event> eventType, Class<? extends Subscriber> subscriberType)Subscribes to an event.voidIEventService. subscribe(Class<? extends Event> eventType, Class<? extends Subscriber> subscriberType)Subscribes to an event. -
Uses of Event in alpine.tasks
Methods in alpine.tasks with parameters of type Event Modifier and Type Method Description voidLdapSyncTask. inform(Event e)protected voidAlpineTaskScheduler. scheduleEvent(Event event, long delay, long period)Schedules a repeating Event.
-