Search in sources :

Example 11 with TimerEvent

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");
}
Also used : AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) TimerSchedule(org.gluu.service.timer.schedule.TimerSchedule) TimerEvent(org.gluu.service.timer.event.TimerEvent) StatEvent(org.gluu.oxauth.service.cdi.event.StatEvent) Asynchronous(org.gluu.service.cdi.async.Asynchronous)

Example 12 with TimerEvent

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());
}
Also used : AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) TimerSchedule(org.gluu.service.timer.schedule.TimerSchedule) CibaRequestsProcessorEvent(org.gluu.service.cdi.event.CibaRequestsProcessorEvent) TimerEvent(org.gluu.service.timer.event.TimerEvent)

Example 13 with TimerEvent

use of org.gluu.service.timer.event.TimerEvent in project oxCore by GluuFederation.

the class CustomScriptManager method initTimer.

@Asynchronous
public void initTimer(List<CustomScriptType> supportedCustomScriptTypes) {
    this.supportedCustomScriptTypes = supportedCustomScriptTypes;
    configure();
    final int delay = 30;
    final int interval = DEFAULT_INTERVAL;
    reload(true);
    timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new UpdateScriptEvent(), Scheduled.Literal.INSTANCE));
}
Also used : TimerSchedule(org.gluu.service.timer.schedule.TimerSchedule) TimerEvent(org.gluu.service.timer.event.TimerEvent) UpdateScriptEvent(org.gluu.service.cdi.event.UpdateScriptEvent) Asynchronous(org.gluu.service.cdi.async.Asynchronous)

Example 14 with TimerEvent

use of org.gluu.service.timer.event.TimerEvent in project oxTrust by GluuFederation.

the class CacheRefreshTimer method initTimer.

public void initTimer() {
    log.info("Initializing Cache Refresh Timer");
    this.isActive = new AtomicBoolean(false);
    // Clean up previous Inum cache
    CacheRefreshConfiguration cacheRefreshConfiguration = configurationFactory.getCacheRefreshConfiguration();
    if (cacheRefreshConfiguration != null) {
        String snapshotFolder = cacheRefreshConfiguration.getSnapshotFolder();
        if (StringHelper.isNotEmpty(snapshotFolder)) {
            String inumCachePath = getInumCachePath(cacheRefreshConfiguration);
            objectSerializationService.cleanup(inumCachePath);
        }
    }
    // Schedule to start cache refresh every 1 minute
    timerEvent.fire(new TimerEvent(new TimerSchedule(DEFAULT_INTERVAL, DEFAULT_INTERVAL), new CacheRefreshEvent(), Scheduled.Literal.INSTANCE));
    this.lastFinishedTime = System.currentTimeMillis();
}
Also used : AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) TimerSchedule(org.gluu.service.timer.schedule.TimerSchedule) CacheRefreshConfiguration(org.gluu.config.oxtrust.CacheRefreshConfiguration) TimerEvent(org.gluu.service.timer.event.TimerEvent) CacheRefreshEvent(org.gluu.oxtrust.service.cdi.event.CacheRefreshEvent)

Example 15 with TimerEvent

use of org.gluu.service.timer.event.TimerEvent in project oxTrust by GluuFederation.

the class StatusCheckerDaily method initTimer.

public void initTimer() {
    log.debug("Initializing Daily Status Cheker Timer");
    this.isActive = new AtomicBoolean(false);
    final int delay = 1 * 60;
    final int interval = DEFAULT_INTERVAL;
    timerEvent.fire(new TimerEvent(new TimerSchedule(delay, interval), new StatusCheckerDailyEvent(), Scheduled.Literal.INSTANCE));
}
Also used : AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) TimerSchedule(org.gluu.service.timer.schedule.TimerSchedule) StatusCheckerDailyEvent(org.gluu.oxtrust.service.cdi.event.StatusCheckerDailyEvent) TimerEvent(org.gluu.service.timer.event.TimerEvent)

Aggregations

TimerEvent (org.gluu.service.timer.event.TimerEvent)22 TimerSchedule (org.gluu.service.timer.schedule.TimerSchedule)21 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)15 StatusCheckerTimerEvent (org.gluu.oxtrust.service.cdi.event.StatusCheckerTimerEvent)2 Asynchronous (org.gluu.service.cdi.async.Asynchronous)2 CleanerEvent (org.gluu.service.cdi.event.CleanerEvent)2 LdapStatusEvent (org.gluu.service.cdi.event.LdapStatusEvent)2 Date (java.util.Date)1 CacheRefreshConfiguration (org.gluu.config.oxtrust.CacheRefreshConfiguration)1 AuthConfigurationEvent (org.gluu.oxauth.service.cdi.event.AuthConfigurationEvent)1 ExpirationEvent (org.gluu.oxauth.service.cdi.event.ExpirationEvent)1 KeyGenerationEvent (org.gluu.oxauth.service.cdi.event.KeyGenerationEvent)1 StatEvent (org.gluu.oxauth.service.cdi.event.StatEvent)1 CacheRefreshEvent (org.gluu.oxtrust.service.cdi.event.CacheRefreshEvent)1 EntityIdMonitoringEvent (org.gluu.oxtrust.service.cdi.event.EntityIdMonitoringEvent)1 LogFileSizeChekerEvent (org.gluu.oxtrust.service.cdi.event.LogFileSizeChekerEvent)1 MetadataValidationEvent (org.gluu.oxtrust.service.cdi.event.MetadataValidationEvent)1 StatusCheckerDailyEvent (org.gluu.oxtrust.service.cdi.event.StatusCheckerDailyEvent)1 TranscodingRulesUpdateEvent (org.gluu.oxtrust.service.cdi.event.TranscodingRulesUpdateEvent)1 CibaRequestsProcessorEvent (org.gluu.service.cdi.event.CibaRequestsProcessorEvent)1