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

org.gridkit.jvmtool.stacktrace.StackTraceWriter Maven / Gradle / Ivy

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

import java.io.IOException;

public interface StackTraceWriter {

    /**
     * Appends another thread snapshot to stream.
     * @throws IOException
     */
    public void write(ThreadSnapshot snap) throws IOException;

    /**
     * Closes writer and flushes all underlying streams.
     */
    public void close();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy