com.raynigon.ecs.logging.processor.EventProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecs-logging-base Show documentation
Show all versions of ecs-logging-base Show documentation
The ecs-logging-base is a part of the unit-api
The newest version!
package com.raynigon.ecs.logging.processor;
import ch.qos.logback.core.spi.DeferredProcessingAware;
import com.raynigon.ecs.logging.event.EcsLogEvent;
public interface EventProcessor {
R process(R result, E event);
}