Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to clean and uniformize Activity Impls
[simgrid.git] / src / kernel / activity / SleepImpl.hpp
1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMIX_SYNCHRO_SLEEP_HPP
7 #define SIMIX_SYNCHRO_SLEEP_HPP
8
9 #include "src/kernel/activity/ActivityImpl.hpp"
10 #include "surf/surf.hpp"
11
12 namespace simgrid {
13 namespace kernel {
14 namespace activity {
15
16 class XBT_PUBLIC SleepImpl : public ActivityImpl {
17   sg_host_t host_  = nullptr;
18   double duration_ = 0;
19
20 public:
21   SleepImplPtr set_name(const std::string& name);
22   SleepImplPtr set_host(s4u::Host* host);
23   SleepImplPtr set_duration(double duration);
24   void post() override;
25   void finish() override;
26   SleepImpl* start();
27 };
28 } // namespace activity
29 } // namespace kernel
30 } // namespace simgrid
31
32 #endif