
vertx.effect.core.ReqEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-effect Show documentation
Show all versions of vertx-effect Show documentation
When actors meet Functional Programming
package vertx.effect.core;
import io.vertx.core.http.HttpMethod;
import jdk.jfr.*;
@Label("http request")
@Name("vertx.effect.httpclient.Request")
@Category("vertx.effect")
@Description("Http request made by vertx-effect http client.")
@StackTrace(value = false)
public class ReqEvent extends Event {
@Label("method")
public String method;
@Label("uri")
public String uri;
@Label("status_code")
public int statusCode = -1;
@Label("exception_class")
public String exceptionClass;
@Label("exception_message")
public String exceptionMessage;
@Label("host")
public String host;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy