You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-17 01:02:23 +03:00
25 lines
286 B
C++
25 lines
286 B
C++
|
|
|
|
#ifndef PINGTASK_H_
|
|
#define PINGTASK_H_
|
|
|
|
#include "PosixTask.h"
|
|
|
|
namespace storagemanager
|
|
{
|
|
|
|
class PingTask : PosixTask
|
|
{
|
|
public:
|
|
PingTask(int sock, uint length);
|
|
virtual ~PingTask();
|
|
|
|
void run();
|
|
|
|
private:
|
|
PingTask();
|
|
};
|
|
|
|
}
|
|
#endif
|