blob: 1b9a088e4d8667b64cd58253b8cd028314f71ad1 [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);
}
}