org.gridkit.jvmtool.event.CommonEvent 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;
import org.gridkit.jvmtool.stacktrace.CounterCollection;
public interface CommonEvent extends TimestampedEvent, TaggedEvent, MultiCounterEvent {
@Override
public long timestamp();
@Override
public CounterCollection counters();
@Override
public TagCollection tags();
}