io.logspace.agent.shaded.quartz.simpl.SimpleTimeBroker Maven / Gradle / Ivy
/*
* Copyright 2001-2009 Terracotta, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
*/
package io.logspace.agent.shaded.quartz.simpl;
import java.util.Date;
import io.logspace.agent.shaded.quartz.SchedulerConfigException;
import io.logspace.agent.shaded.quartz.spi.TimeBroker;
/**
*
* The interface to be implemented by classes that want to provide a mechanism
* by which the {@link io.logspace.agent.shaded.quartz.core.QuartzScheduler}
can
* reliably determine the current time.
*
*
*
* In general, the default implementation of this interface ({@link io.logspace.agent.shaded.quartz.simpl.SimpleTimeBroker}
-
* which simply uses System.getCurrentTimeMillis()
)is
* sufficient. However situations may exist where this default scheme is
* lacking in its robustsness - especially when Quartz is used in a clustered
* configuration. For example, if one or more of the machines in the cluster
* has a system time that varies by more than a few seconds from the clocks on
* the other systems in the cluster, scheduling confusion will result.
*
*
* @see io.logspace.agent.shaded.quartz.core.QuartzScheduler
*
* @author James House
*/
@SuppressWarnings("deprecation")
public class SimpleTimeBroker implements TimeBroker {
/*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* Interface.
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/**
*
* Get the current time, simply using new Date()
.
*
*/
public Date getCurrentTime() {
return new Date();
}
public void initialize() throws SchedulerConfigException {
// do nothing...
}
public void shutdown() {
// do nothing...
}
}