RFA .NET
Assembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Sets the low and high threshold values of the event queue.
Namespace: ThomsonReuters.RFA.CommonAssembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Syntax
C# |
---|
public void SetEventQueueThreshold( int lowThreshold, int highThreshold ) |
Visual Basic |
---|
Public Sub SetEventQueueThreshold ( _ lowThreshold As Integer, _ highThreshold As Integer _ ) |
Visual C++ |
---|
public: virtual void SetEventQueueThreshold( int lowThreshold, int highThreshold ) sealed |
F# |
---|
abstract SetEventQueueThreshold : lowThreshold:int * highThreshold:int -> unit override SetEventQueueThreshold : lowThreshold:int * highThreshold:int -> unit |
Parameters
- lowThreshold
- Type: System..::..Int32
The event queue low threshold value.
- highThreshold
- Type: System..::..Int32
The event queue high threshold value.
Remarks
The high threshold value applies to when the number of events in the queue is increasing and the low threshold value applies to when the number of events in the queue is decreasing. lowThreshold must be less than highThreshold and they must be greater than Zero (0) to enable the respective low and high threshold functionality. A lowThreshold of Zero (0) disables low threshold functionality and a highThreshold of Zero (0) disables high threshold functionality. Does nothing for an event queue with statistics disabled.
Exceptions
Exception | Condition |
---|---|
ThomsonReuters.RFA.Common..::..InvalidUsageException | Invalid Usage. |