GM6000 Digital Heater Controller Branch: main
SDX-1330
Record.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Record_h_
2#define Cpl_Persistent_Record_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16
17
18///
19namespace Cpl {
20///
21namespace Persistent {
22
23
24/** This abstract class defines the public interface for a Record instance.
25 A Record is the atomic-unit that is managed in Persistent storage media.
26 */
27class Record
28{
29public:
30 /** This method is to start/initialize the record. It is typically only
31 called once at the startup of the application. However, start() can be
32 called after a previous call to the stop() method.
33
34 This method is called when the RecordServer is 'opened'.
35
36 The 'myMbox' is a reference to the RecordServer's DM/ITC mailbox, i.e. the
37 mailbox for the thread that the Record executes in.
38 */
39 virtual void start( Cpl::Dm::MailboxServer& myMbox ) noexcept = 0;
40
41 /** This method is to stop/shutdown the record. It is typically only
42 called once during an orderly shutdown of the application. However,
43 start() can be after a previous call to the stop() method.
44 */
45 virtual void stop() noexcept = 0;
46
47
48public:
49 /// Virtual destructor
50 virtual ~Record() {}
51};
52
53
54}; // end namespaces
55};
56#endif // end header latch
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This abstract class defines the public interface for a Record instance.
Definition Record.h:28
virtual void stop() noexcept=0
This method is to stop/shutdown the record.
virtual void start(Cpl::Dm::MailboxServer &myMbox) noexcept=0
This method is to start/initialize the record.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20