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

org.opentcs.kernel.extensions.watchdog.TimeProvider Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
package org.opentcs.kernel.extensions.watchdog;

/**
 * Provides the current time.
 */
public class TimeProvider {

  /**
   * Creates a new instance.
   */
  public TimeProvider() {
  }

  /**
   * Returns the current time.
   *
   * @return The current time.
   */
  public long getCurrentTime() {
    return System.currentTimeMillis();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy