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

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

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

/**
 * The strategy used when an error occurs but no error handler can handle the failure.
 */
public enum UnhandledFailureStrategy {
    /**
     * Log the error message and close the connection.
     */
    LOG_AND_CLOSE,
    /**
     * Close the connection silently.
     */
    CLOSE,
    /**
     * Log the error message.
     */
    LOG,
    /**
     * No operation.
     */
    NOOP;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy