Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
ITimeLoopService.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2026 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* ITimeLoopService.cc (C) 2000-2025 */
9/* */
10/* Interface of a service operating during the time loop. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13#ifndef ARCANE_CORE_ITIMELOOPSERVICE_H
14#define ARCANE_CORE_ITIMELOOPSERVICE_H
15/*---------------------------------------------------------------------------*/
16/*---------------------------------------------------------------------------*/
17
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
37{
38 public:
39
40 virtual ~ITimeLoopService() = default;
41
42 public:
43
44 virtual void onTimeLoopBeginLoop() = 0;
45 virtual void onTimeLoopEndLoop() = 0;
46 virtual void onTimeLoopStartInit() = 0;
47 virtual void onTimeLoopContinueInit() = 0;
48 virtual void onTimeLoopExit() = 0;
49 virtual void onTimeLoopMeshChanged() = 0;
50 virtual void onTimeLoopRestore() = 0;
51};
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56} // namespace Arcane
57
58/*---------------------------------------------------------------------------*/
59/*---------------------------------------------------------------------------*/
60
61#endif
Arcane configuration file.
Interface of a service operating during the time loop.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --