public final class FlowControlMode
extends java.lang.Enum
Title: Framework Support Library
Description: Defines a flow control mode for the EventQueue
.
Copyright: Copyright (c) 2010
Company: StreamScape Technologies
Modifier and Type | Field and Description |
---|---|
static FlowControlMode |
DROP
In this mode if an event queue is full, new events will not be put into the queue.
|
static FlowControlMode |
EVENT_CACHE
This mode is not supported.
|
static FlowControlMode |
EXCEPTION
In this mode if an event queue is full, an exception is thrown for every new event that users try to put into the queue.
|
static FlowControlMode |
NOTIFICATION
In this mode if an event queue is full, a notification (advisory) is raised and further enqueueing operations are blocked.
|
Modifier and Type | Method and Description |
---|---|
static FlowControlMode |
valueOf(java.lang.String name) |
static FlowControlMode[] |
values() |
public static final FlowControlMode DROP
public static final FlowControlMode EXCEPTION
public static final FlowControlMode EVENT_CACHE
public static final FlowControlMode NOTIFICATION
public static FlowControlMode[] values()
public static FlowControlMode valueOf(java.lang.String name)
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.