// // Created by #Suyghur, on 4/7/21. // #ifndef DOLIN_ZAP_FILE_FLUSH_H #define DOLIN_ZAP_FILE_FLUSH_H #include "buffer_flush.h" #include #include class FileFlush { public: FileFlush(); ~FileFlush(); bool AsyncFlush(BufferFlush *buffer); void StopFlush(); private: void AsyncLogThread(); static ssize_t Flush(BufferFlush *buffer); bool exit = false; std::vector async_buffer; std::thread async_thread; std::condition_variable async_condition; std::mutex async_mtx; }; #endif //DOLIN_ZAP_FILE_FLUSH_H