use of org.gluu.service.timer.event.TimerEvent in project oxAuth by GluuFederation.
the class ConfigurationFactory method initTimer.
public void initTimer() {
log.debug("Initializing Configuration Timer");
final int delay = 30;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new ConfigurationEvent(), Scheduled.Literal.INSTANCE));
}
use of org.gluu.service.timer.event.TimerEvent in project oxAuth by GluuFederation.
the class StatTimer method initTimer.
@Asynchronous
public void initTimer() {
log.info("Initializing Stat Service Timer");
this.isActive = new AtomicBoolean(false);
timerEvent.fire(new TimerEvent(new TimerSchedule(TIMER_TICK_INTERVAL_IN_SECONDS, TIMER_TICK_INTERVAL_IN_SECONDS), new StatEvent(), Scheduled.Literal.INSTANCE));
this.lastFinishedTime = System.currentTimeMillis();
log.info("Initialized Stat Service Timer");
}
use of org.gluu.service.timer.event.TimerEvent in project oxAuth by GluuFederation.
the class CibaRequestsProcessorJob method initTimer.
/**
* Method invoked from the appInitializer to start processing every some time.
*/
public void initTimer() {
log.debug("Initializing CIBA requests processor");
this.isActive = new AtomicBoolean(false);
int intervalSec = appConfiguration.getBackchannelRequestsProcessorJobIntervalSec();
// Schedule to start processor every N seconds
processorEvent.fire(new TimerEvent(new TimerSchedule(intervalSec, intervalSec), new CibaRequestsProcessorEvent(), Scheduled.Literal.INSTANCE));
this.lastFinishedTime = System.currentTimeMillis();
this.executorService = Executors.newCachedThreadPool(ServerUtil.daemonThreadFactory());
}
use of org.gluu.service.timer.event.TimerEvent in project oxCore by GluuFederation.
the class LoggerService method initTimer.
public void initTimer() {
log.info("Initializing Logger Update Timer");
final int delay = 15;
final int interval = DEFAULT_INTERVAL;
timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new LoggerUpdateEvent(), Scheduled.Literal.INSTANCE));
}
use of org.gluu.service.timer.event.TimerEvent in project oxCore by GluuFederation.
the class TimerJob method execute.
@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
try {
TimerEvent timerEvent = (TimerEvent) context.getJobDetail().getJobDataMap().get(KEY_TIMER_EVENT);
if (timerEvent == null) {
return;
}
log.trace("Fire timer event [{}] with qualifiers {} from instance {}", timerEvent.getTargetEvent().getClass().getName(), timerEvent.getQualifiers(), System.identityHashCode(this));
beanManager.fireEvent(timerEvent.getTargetEvent(), timerEvent.getQualifiers());
} catch (Exception ex) {
throw new JobExecutionException(ex);
}
}
Aggregations