diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs b/Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs index d17bde261..2696f5698 100644 --- a/Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs +++ b/Software/Visual_Studio/Tango.Transport/TransportAdapterBase.cs @@ -219,7 +219,8 @@ namespace Tango.Transport /// Writes the specified data to the stream. /// </summary> /// <param name="data">The data.</param> - public abstract void Write(byte[] data); + /// <param name="immidiate">Writes the data as soon as possible while ignoring any message queuing and batching.</param> + public abstract void Write(byte[] data, bool immidiate = false); /// <summary> /// Connects the transport component. |
