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

scouter.agent.trace.AutoServiceStartAnalyzer Maven / Gradle / Ivy

There is a newer version: 2.20.0
Show newest version
package scouter.agent.trace;

import scouter.util.StringEnumer;
import scouter.util.StringKeyLinkedMap;

public class AutoServiceStartAnalyzer {
	private static StringKeyLinkedMap table = new StringKeyLinkedMap().setMax(200);

	public static void put(String classMethod, String stack) {
		table.putLast(classMethod, stack);
	}

	public static StringEnumer keys() {
		return table.keys();
	}

	public static String getStack(String key) {
		return table.get(key);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy