using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Transport.Adapters { /// /// Represents a write mode. /// public enum TcpTransportAdapterWriteMode { /// /// Writes the data directly from the Write(); method (default). /// Direct, /// /// Accumulates the data being written from the Write(); method and writes a block of messages on intervals. /// Interval } }