aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs')
-rw-r--r--Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs b/Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs
deleted file mode 100644
index 89665e2d2..000000000
--- a/Software/Visual_Studio/Tango.Transport/Adapters/TcpTransportAdapterWriteMode.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.Transport.Adapters
-{
- /// <summary>
- /// Represents a <see cref="TcpTransportAdapter"/> write mode.
- /// </summary>
- public enum TcpTransportAdapterWriteMode
- {
- /// <summary>
- /// Writes the data directly from the Write(); method (default).
- /// </summary>
- Direct,
-
- /// <summary>
- /// Accumulates the data being written from the Write(); method and writes a block of messages on intervals.
- /// </summary>
- Interval
- }
-}