ch.qos.logback.core.sift.AppenderTracker Maven / Gradle / Ivy
The newest version!
/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2009, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package ch.qos.logback.core.sift;
import java.util.List;
import ch.qos.logback.core.Appender;
public interface AppenderTracker {
static int MILLIS_IN_ONE_SECOND = 1000;
static int THRESHOLD = 30 * 60 * MILLIS_IN_ONE_SECOND; // 30 minutes
void put(String key, Appender value, long timestamp);
Appender get(String key, long timestamp);
void stopStaleAppenders(long timestamp);
List keyList();
List> valueList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy