blob: 41642d0b104295581ca10465726a1c3534260c50 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.core.controller;
import org.apache.log4j.Logger;
import java.util.Timer;
import java.util.TimerTask;
public class InitServicesConfigCacheJob {
private static final Logger LOGGER = Logger.getLogger(InitServicesConfigCacheJob.class.getName());
private InitServicesConfigCacheJob() {
}
public static void init( String configFileName ) {
LOGGER.info("InitServicesConfigCacheJob called");
TimerTask timerTask = new ServicesConfigCacheTimerTask(configFileName);
Timer timer = new Timer();
timer.scheduleAtFixedRate(timerTask, 100, 5000L);
}
}