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

org.gridkit.jvmtool.spi.parsers.JsonEventDumpParserFactory Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package org.gridkit.jvmtool.spi.parsers;

import java.util.Map;

public interface JsonEventDumpParserFactory {

	public static final String OPT_USE_NATIVE_JFR_PARSER = "jfr.native_parser";
	public static final String OPT_JFR_EVENT_WHITELIST = "jfr.whitelist";
	public static final String OPT_JFR_EVENT_BLACKLIST = "jfr.blacklist";
	public static final String OPT_JSON_MAX_DEPTH = "json.max_depth";
	
	/**
	 * Instantiates an instance of parser. 
	 * May fail or return null, that means parser is not available or is not compliant with options passed.
	 */
	public JsonEventDumpParser createParser(Map options) throws Exception; 
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy