GM6000 Digital Heater Controller Branch: main
SDX-1330
ListenerClientSync.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_ListenerClientSync_h_
2#define Cpl_Io_Socket_ListenerClientSync_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
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace Socket {
25
26
27/** This partially concrete class implements the synchronous ITC open
28 call for the OpenApi. The subclass is still required to implement the ITC
29 request() method.
30 */
33{
34protected:
35 /// Mailbox (of the server implementing the ITC request() method
37
38
39public:
40 /// Constructor
42
43
44public:
45 /// See Cpl::Io::Socket::Listener::Client
46 bool newConnection( Cpl::Io::Descriptor newFd, const char* rawConnectionInfo );
47
48};
49
50
51
52}; // end namespaces
53};
54};
55#endif // end header latch
This class defines the callback mechanism used for accepting incoming socket connections.
Definition Listener.h:56
This abstract class define message types and payloads for a set of ITC services.
Definition ListenerClientRequest.h:33
This partially concrete class implements the synchronous ITC open call for the OpenApi.
Definition ListenerClientSync.h:33
Cpl::Itc::PostApi & m_mbox
Mailbox (of the server implementing the ITC request() method.
Definition ListenerClientSync.h:36
ListenerClientSync(Cpl::Itc::PostApi &myMbox)
Constructor.
bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo)
See Cpl::Io::Socket::Listener::Client.
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26