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

io.quarkus.reactivemessaging.http.runtime.ReactiveWebSocketHandler Maven / Gradle / Ivy

package io.quarkus.reactivemessaging.http.runtime;

import io.vertx.core.Handler;
import io.vertx.ext.web.RoutingContext;

class ReactiveWebSocketHandler implements Handler {
    private final ReactiveWebSocketHandlerBean handler;

    ReactiveWebSocketHandler(ReactiveWebSocketHandlerBean handler) {
        this.handler = handler;
    }

    @Override
    public void handle(RoutingContext event) {
        handler.handle(event);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy