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

io.quarkus.websockets.next.InboundProcessingMode Maven / Gradle / Ivy

There is a newer version: 3.17.2
Show newest version
package io.quarkus.websockets.next;

import io.smallrye.common.annotation.Experimental;

/**
 * WebSocket endpoints define the mode used to process incoming events for a specific connection.
 * 

* An incoming event can represent a message (text, binary, pong), opening connection and closing connection. * * @see WebSocketConnection * @see WebSocketClientConnection */ @Experimental("This API is experimental and may change in the future") public enum InboundProcessingMode { /** * Events are processed serially, ordering is guaranteed. */ SERIAL, /** * Events are processed concurrently, there are no ordering guarantees. */ CONCURRENT, }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy