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

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