public static enum ConcurrentWebSocketSessionDecorator.OverflowStrategy extends Enum<ConcurrentWebSocketSessionDecorator.OverflowStrategy>
| Enum Constant and Description |
|---|
DROP
Drop the oldest messages from the buffer.
|
TERMINATE
Throw
SessionLimitExceededException that would will result
in the session being terminated. |
| Modifier and Type | Method and Description |
|---|---|
static ConcurrentWebSocketSessionDecorator.OverflowStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConcurrentWebSocketSessionDecorator.OverflowStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConcurrentWebSocketSessionDecorator.OverflowStrategy TERMINATE
SessionLimitExceededException that would will result
in the session being terminated.public static final ConcurrentWebSocketSessionDecorator.OverflowStrategy DROP
public static ConcurrentWebSocketSessionDecorator.OverflowStrategy[] values()
for (ConcurrentWebSocketSessionDecorator.OverflowStrategy c : ConcurrentWebSocketSessionDecorator.OverflowStrategy.values()) System.out.println(c);
public static ConcurrentWebSocketSessionDecorator.OverflowStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null