org.gridkit.jvmtool.event.EventMorpher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjk-stacktrace Show documentation
Show all versions of sjk-stacktrace Show documentation
Thread dumps: capture and encoding
package org.gridkit.jvmtool.event;
public interface EventMorpher {
/**
* @return transformed event or null if event should be skipped
*/
public T morph(S event);
}