Uses of Class
jakarta.ejb.TimerConfig
-
Packages that use TimerConfig Package Description jakarta.ejb Contains the Enterprise Bean classes and interfaces that define the contracts between the enterprise bean and its clients and between the enterprise bean and the enterprise bean container. -
-
Uses of TimerConfig in jakarta.ejb
Methods in jakarta.ejb with parameters of type TimerConfig Modifier and Type Method Description Timer
TimerService. createCalendarTimer(ScheduleExpression schedule, TimerConfig timerConfig)
Create a calendar-based timer based on the input schedule expression.Timer
TimerService. createIntervalTimer(long initialDuration, long intervalDuration, TimerConfig timerConfig)
Create an interval timer whose first expiration occurs after a specified duration, and whose subsequent expirations occur after a specified interval.Timer
TimerService. createIntervalTimer(Date initialExpiration, long intervalDuration, TimerConfig timerConfig)
Create an interval timer whose first expiration occurs at a given point in time and whose subsequent expirations occur after a specified interval.Timer
TimerService. createSingleActionTimer(long duration, TimerConfig timerConfig)
Create a single-action timer that expires after a specified duration.Timer
TimerService. createSingleActionTimer(Date expiration, TimerConfig timerConfig)
Create a single-action timer that expires at a given point in time.
-