Package org.wildfly.clustering.ejb.timer
Interface Timer<I>
-
- Type Parameters:
I- the timer identifier type
- All Known Subinterfaces:
ScheduledTimer<I>
public interface Timer<I>Describes the properties of a timer, and its controlling mechanisms.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivate()voidcancel()IgetId()ImmutableTimerMetaDatagetMetaData()voidinvoke()booleanisActive()booleanisCanceled()voidsuspend()
-
-
-
Method Detail
-
getId
I getId()
-
getMetaData
ImmutableTimerMetaData getMetaData()
-
isActive
boolean isActive()
-
isCanceled
boolean isCanceled()
-
cancel
void cancel()
-
activate
void activate()
-
suspend
void suspend()
-
-