Programmers Reference - CConSysClient (1)
class CConSysClient : public CVirtualClient
#include "ConSys.h"
class CConSysClient : public CVirtualClient
{
public:
        CConSysClient (CDataRequest* aDataRequest, CConSysEnviroment* enviroment = NULL);
        virtual ~CConSysClient();
public:
        virtual void NewData(CDataValue* aValue);
                // This function is called whenever new data 
                // has arrived
        virtual void NewMessage(CMessage* message);
                // this function is called when ever a new
                // message has arrived
        virtual void WriteData(CDataValue* aValue);
                // Write data to the frontend.
        virtual void PreprocessData(CConSysData* aValue);
                // This function receives the raw data from
                // the system. 
};
The CConSysClient class is the fundamental class for a client in the ConSys System. This client is used to request data, write data, and receiving data.
References:
 The Labotory System Kernel Structure.
The Labotory System Kernel Structure.
 CDataRequest.
CDataRequest.
 CConSysEnviroment.
CConSysEnviroment.
Last Modified 10 January 2019
