All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ro.isdc.wro.manager.runnable.ReloadModelRunnable Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
/**
 * Copyright Alex Objelean
 */
package ro.isdc.wro.manager.runnable;

import static org.apache.commons.lang3.Validate.notNull;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import ro.isdc.wro.model.factory.WroModelFactory;


/**
 * A {@link Runnable} executed by scheduler to clear the model cache.
 *
 * @author Alex Objelean
 * @created 24 Oct 2011
 * @since 1.4.2
 */
public final class ReloadModelRunnable
    implements Runnable {
  private static final Logger LOG = LoggerFactory.getLogger(ReloadModelRunnable.class);
  private final WroModelFactory modelFactory;

  public ReloadModelRunnable(final WroModelFactory modelFactory) {
    notNull(modelFactory);
    this.modelFactory = modelFactory;
  }

  public void run() {
    LOG.debug("Reloading Model....");
    try {
      modelFactory.destroy();
    } catch (final Exception e) {
      LOG.error("Exception occured during cache reload: ", e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy