Package org.olat.repository.async

Examples of org.olat.repository.async.SetLastUsageBackgroundTask


   * Set last-usage date to to now for certain repository-entry.
   * @param
   */
  public static void setLastUsageNowFor(final RepositoryEntry re) {
    if (re != null) {
      BackgroundTaskQueueManager.getInstance().addTask(new SetLastUsageBackgroundTask(re));
    }
  }
View Full Code Here

TOP

Related Classes of org.olat.repository.async.SetLastUsageBackgroundTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.