Click or drag to resize

SocketOpPriority Enumeration

The priorities of the messages send receive operations

Namespace: com.b2bits.FIXAntenna
Assembly: FIXAntenna_net4.8 (in FIXAntenna_net4.8.dll) Version: 2.32.0.0
Syntax
public enum SocketOpPriority
Members
Member nameValueDescription
NA_SOCKET_OP_PRIORITY0 Not initialized SocketOpPriority
AGGRESSIVE_SEND_SOCKET_OP_PRIORITY1 Use dedicated thread to send messages
AGGRESSIVE_RECEIVE_SOCKET_OP_PRIORITY2 Use dedicated thread to receive messages
EVEN_SOCKET_OP_PRIORITY4 Use thread pool to send/receive messages
DIRECT_SEND_SOCKET_OP_PRIORITY8 Tries sending from the calling thread, use a thread pool if that would block
AGGRESSIVE_WITH_DIRECT_SEND_SOCKET_OP_PRIORITY9 Use dedicated thread to send messages, use direct send when possible
AGGRESSIVE_SEND_AND_RECEIVE_SOCKET_OP_PRIORITY11 Use dedicated thread to send and receive messages
See Also