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