com.fasterxml.clustermate.service.util.SimpleLogThrottler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-service Show documentation
Show all versions of clustermate-service Show documentation
Building blocks for ClusterMate-based services and servers.
package com.fasterxml.clustermate.service.util;
import org.slf4j.Logger;
/**
* @deprecated Use {@link com.fasterxml.storemate.store.util.SimpleLogThrottler} directly.
*/
@Deprecated
public class SimpleLogThrottler
extends com.fasterxml.storemate.store.util.SimpleLogThrottler
{
public SimpleLogThrottler(Logger logger, int msecsToThrottle) {
super(logger, msecsToThrottle);
}
}