io.github.honoriuss.blossom.BlossomHandlerImpl 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;
import io.github.honoriuss.blossom.interfaces.ITrackingHandler;
import io.github.honoriuss.blossom.interfaces.ITrackingWriter;
class BlossomHandlerImpl implements ITrackingHandler {
private final ITrackingWriter trackingWriter;
BlossomHandlerImpl(ITrackingWriter trackingWriter) {
this.trackingWriter = trackingWriter;
}
@Override
public void handleTracking(String message) {
trackingWriter.write(message);
}
}