#include <RateStat.h>
Public Member Functions | |
RateStat (std::string iDieUrl) | |
void | sendAuxLegenda (const std::string &) |
void | sendLegenda (const std::string &) |
void | sendStat (const unsigned char *, size_t, unsigned int) |
~RateStat () | |
Private Attributes | |
std::string | iDieUrl_ |
CurlPoster * | poster_ |
Definition at line 11 of file RateStat.h.
evf::RateStat::RateStat | ( | std::string | iDieUrl | ) |
evf::RateStat::~RateStat | ( | ) |
void evf::RateStat::sendAuxLegenda | ( | const std::string & | message | ) |
Definition at line 29 of file RateStat.cc.
References evf::CurlPoster::legaux, poster_, and evf::CurlPoster::postString().
Referenced by evf::FUEventProcessor::configuring(), and evf::FUEventProcessor::enabling().
{ poster_->postString(message.c_str(),message.length(),0,CurlPoster::legaux); }
void evf::RateStat::sendLegenda | ( | const std::string & | message | ) |
Definition at line 24 of file RateStat.cc.
References evf::CurlPoster::leg, poster_, and evf::CurlPoster::postString().
Referenced by evf::FUEventProcessor::configuring(), and evf::FUEventProcessor::enabling().
{ poster_->postString(message.c_str(),message.length(),0,CurlPoster::leg); }
void evf::RateStat::sendStat | ( | const unsigned char * | buf, |
size_t | len, | ||
unsigned int | lsid | ||
) |
Definition at line 19 of file RateStat.cc.
References evf::CurlPoster::postBinary(), and poster_.
Referenced by evf::FUEventProcessor::summarize().
{ poster_->postBinary(buf,len,lsid); }
std::string evf::RateStat::iDieUrl_ [private] |
Definition at line 19 of file RateStat.h.
Referenced by RateStat().
CurlPoster* evf::RateStat::poster_ [private] |
Definition at line 20 of file RateStat.h.
Referenced by RateStat(), sendAuxLegenda(), sendLegenda(), sendStat(), and ~RateStat().