io.quarkus.websockets.next.UnhandledFailureStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-websockets-next Show documentation
Show all versions of quarkus-websockets-next Show documentation
Implementation of the WebSocket API with enhanced efficiency and usability
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