All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.unit.report.impl.ReportStream Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
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