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

org.gridkit.jvmtool.stacktrace.codec.json.JsonEventAdapter Maven / Gradle / Ivy

package org.gridkit.jvmtool.stacktrace.codec.json;

import java.io.IOException;

import org.gridkit.jvmtool.event.CommonEvent;
import org.gridkit.jvmtool.spi.parsers.JsonEventSource;

public interface JsonEventAdapter {

    /**
     * @return next available event at source or null if no events available
     */
    public CommonEvent parseNextEvent(JsonEventSource source) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy