Package com.atlassian.event.internal
Interface AsynchronousEventResolver
- All Known Implementing Classes:
AnnotationAsynchronousEventResolver
public interface AsynchronousEventResolver
An interface to resolve whether an event can be handled asynchronously or not.
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisAsynchronousEvent(Object event) Tells whether the event can be handled asynchronously or not
-
Method Details
-
isAsynchronousEvent
Tells whether the event can be handled asynchronously or not- Parameters:
event- the event to check- Returns:
trueif the event can be handled asynchronously,falseotherwise.- Throws:
NullPointerException- if the event isnull
-