io.vertx.ext.unit.report.impl.ReportStream Maven / Gradle / Ivy
package io.vertx.ext.unit.report.impl;
import io.vertx.core.buffer.Buffer;
/**
* @author Julien Viet
*/
public interface ReportStream {
default void info(Buffer msg) {}
default void error(Buffer msg, Throwable cause) {}
default void end() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy