Salome HOME
cbc7a18ab123ba90cb5c59a91330e9be2487cdbf
[modules/yacs.git] / src / engine / WlmTask.hxx
1 // Copyright (C) 2006-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef __WLM_TASK_HXX__
20 #define __WLM_TASK_HXX__
21 #include "Executor.hxx"
22 #include "Task.hxx"
23 #include "workloadmanager/WorkloadManager.hxx"
24
25 namespace YACS
26 {
27 namespace ENGINE
28 {
29 class YACSLIBENGINE_EXPORT WlmTask : public WorkloadManager::Task
30 {
31 public:
32   WlmTask(Executor& executor, YACS::ENGINE::Task* yacsTask);
33   const WorkloadManager::ContainerType& type()const override;
34   void run(const WorkloadManager::RunInfo& runInfo)override;
35   bool isAccepted(const WorkloadManager::Resource& r)override;
36
37   static void loadResources(WorkloadManager::WorkloadManager& wm);
38 private:
39   WorkloadManager::ContainerType _type;
40   Executor& _executor;
41   YACS::ENGINE::Task * _yacsTask;
42 };
43
44 }
45 }
46
47 #endif //__WLM_TASK_HXX__