Mercurial > hg > orthanc
view Core/MultiThreading/ArrayFilledByThreads.h @ 1294:910478b2d4e4
refactoring
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 06 Feb 2015 13:48:05 +0100 |
parents | 0da078f3affc |
children |
line wrap: on
line source
#pragma once #include <boost/thread.hpp> #include "../IDynamicObject.h" namespace Orthanc { class ArrayFilledByThreads { public: class IFiller { public: virtual size_t GetFillerSize() = 0; virtual IDynamicObject* GetFillerItem(size_t index) = 0; }; private: IFiller& filler_; boost::mutex mutex_; std::vector<IDynamicObject*> array_; bool filled_; unsigned int threadCount_; class Command; void Clear(); void Update(); public: ArrayFilledByThreads(IFiller& filler); ~ArrayFilledByThreads(); void Reload(); void Invalidate(); void SetThreadCount(unsigned int t); unsigned int GetThreadCount() const { return threadCount_; } size_t GetSize(); IDynamicObject& GetItem(size_t index); }; }