com.gs.api.accelrx.monitor.handler.PingHandler Maven / Gradle / Ivy
The newest version!
package com.gs.api.accelrx.monitor.handler;
import io.vertx.core.Handler;
import io.vertx.rxjava3.ext.web.RoutingContext;
public class PingHandler implements Handler {
public static PingHandler create() {
return new PingHandler();
}
@Override
public void handle(RoutingContext ctx) {
ctx.response().end("pong");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy