dataPublisherBase.h file
Contains the dataPublisher class - a virtual class used by other publishers to distribute data online.
A dataPublisher is a abstract concept. It is something that "watches" the logger for new data and correctly formats and sends that data to some online web service.
Classes
- class dataPublisher
- The dataPublisher class is a virtual class used by other publishers to distribute data online.
Defines
- #define MS_SEND_BUFFER_SIZE = 750
- Send Buffer.
Define documentation
#define MS_SEND_BUFFER_SIZE = 750
Send Buffer.
This determines how many characters to set out at once over the TCP connection. Increasing this may decrease data use by a logger, while decreasing it will save memory. Do not make it smaller than 32 or bigger than 1500 (a typical TCP Maximum Transmission Unit).
This can be changed by setting the build flag MS_SEND_BUFFER_SIZE when compiling.