io.github.honoriuss.blossom.interfaces.ITrackingHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracking-blossom Show documentation
Show all versions of tracking-blossom Show documentation
Track your app nice and convenient
package io.github.honoriuss.blossom.interfaces;
import io.github.honoriuss.blossom.annotations.AdditionalTrackingInfo;
public interface ITrackingHandler {
default void handleTracking(T message) {
}
default void handleTracking(T message, AdditionalTrackingInfo additionalTrackingInfo) {
}
}