File size: 984 Bytes
7fc5a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #ifndef OPENPOSE_THREAD_WORKER_CONSUMER_HPP
#define OPENPOSE_THREAD_WORKER_CONSUMER_HPP
#include <openpose/core/common.hpp>
#include <openpose/thread/worker.hpp>
namespace op
{
template<typename TDatums>
class WorkerConsumer : public Worker<TDatums>
{
public:
virtual ~WorkerConsumer();
void work(TDatums& tDatums);
protected:
virtual void workConsumer(const TDatums& tDatums) = 0;
};
}
// Implementation
namespace op
{
template<typename TDatums>
WorkerConsumer<TDatums>::~WorkerConsumer()
{
}
template<typename TDatums>
void WorkerConsumer<TDatums>::work(TDatums& tDatums)
{
try
{
workConsumer(tDatums);
}
catch (const std::exception& e)
{
this->stop();
errorWorker(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
COMPILE_TEMPLATE_DATUM(WorkerConsumer);
}
#endif // OPENPOSE_THREAD_WORKER_CONSUMER_HPP
|