GM6000 Digital Heater Controller Branch: main
SDX-1330
RxFrameHandlerApi.h
Go to the documentation of this file.
1#ifndef Driver_Tpipe_RxFrameHandlerApi_h_
2#define Driver_Tpipe_RxFrameHandlerApi_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///
18namespace Driver {
19///
20namespace TPipe {
21
22/** This abstract class defines the 'Received Frame Handler' interface for the
23 TPipe. The frame handlers are essentially callback that are executed when
24 a valid frame is received. The frame handler's execute in the TPipe's thread.
25 It is the Application RESPONSIBLE for ensuring proper thread-safe inside
26 the frame handlers.
27 */
29{
30public:
31 /** This method is execute when an valid frame is received AND the frame
32 begins with the frame handler' verb (as defined by its getVerb() method).
33
34 The frame is passed via 'decodedFrameText' - which is a null terminated
35 string. The frame handler is ALLOWED to modify the frame contents (e.g.
36 destructive tokenizing)
37 */
38 virtual void execute( char* decodedFrameText ) noexcept = 0;
39
40
41public:
42 /// This method returns the frame handler's verb string
43 virtual const char* getVerb() const noexcept = 0;
44
45public:
46 /// Virtual destructor
47 virtual ~RxFrameHandlerApi() {}
48};
49
50
51}; // end namespaces
52};
53#endif // end header latch
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
This abstract class defines the 'Received Frame Handler' interface for the TPipe.
Definition RxFrameHandlerApi.h:29
virtual const char * getVerb() const noexcept=0
This method returns the frame handler's verb string.
virtual void execute(char *decodedFrameText) noexcept=0
This method is execute when an valid frame is received AND the frame begins with the frame handler' v...
namespace