Provides information on the receiver threading model.
Namespace:
LeCouteauSuisse.APIAssembly: LeCouteauSuisseAPI (in LeCouteauSuisseAPI.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
C# |
---|
public enum ReceiverThreading |
Visual Basic (Declaration) |
---|
Public Enumeration ReceiverThreading |
Visual C++ |
---|
public enum class ReceiverThreading |
Members
Member name | Description | |
---|---|---|
MonoThread |
Use one dedicated thread for a receiver. No concurrency access on the receiver with this model.
| |
PoolThread |
Use a system pool of thread for all receivers with this option. Concurrency access is possible on the receiver with this model.
|