![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the 'Transmit Command' interface for the TPipe. More...
This abstract class defines the 'Transmit Command' interface for the TPipe.
#include <Tx.h>
Public Member Functions | |
virtual bool | sendCommand (const char *completeCommandText, size_t numBytes) noexcept=0 |
Synchronously transmits a complete 'text command'. | |
bool | sendCommand (Cpl::Text::String &command) noexcept |
Convenience method to send a command that is contain in Text string object. | |
bool | sendCommand (const char *commandString) noexcept |
Convenience method to send a command that is a contained in a null terminated string. | |
virtual bool | sendRawCommand (const char *completeCommandText, size_t numBytes) noexcept=0 |
This is an OPTIMIZATION - use with care!! | |
virtual | ~Tx () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
inlinenoexcept |
Convenience method to send a command that is a contained in a null terminated string.
|
pure virtualnoexcept |
Synchronously transmits a complete 'text command'.
The method will provide the proper TPipe framing and send the framed contents through the pipe.
The method returns true once the frame data has been transferred to the TPipe's outbound stream. If an a Stream error occurred the method returns false.
NOTE: The method will block if there is currently a transmission of a frame in progress.
Implemented in Driver::TPipe::Pipe.
|
inlinenoexcept |
Convenience method to send a command that is contain in Text string object.
|
pure virtualnoexcept |
This is an OPTIMIZATION - use with care!!
The method sends the data un-encoded to speed up the transfer of large commands. THe application is responsible for managing the framing
Implemented in Driver::TPipe::Pipe.