0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ConnectionHandler.h
Go to the documentation of this file.
1 /* -*- c++ -*-
2  * Copyright (C) 2007-2015 Hypertable, Inc.
3  *
4  * This file is part of Hypertable.
5  *
6  * Hypertable is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 3
9  * of the License, or any later version.
10  *
11  * Hypertable is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301, USA.
20  */
21 
26 
27 #ifndef FsBroker_Lib_ConnectionHandler_h
28 #define FsBroker_Lib_ConnectionHandler_h
29 
30 #include "Broker.h"
31 
34 
35 namespace Hypertable {
36 namespace FsBroker {
37 namespace Lib {
38 
41 
44 
45  public:
53  BrokerPtr &broker)
54  : m_comm(comm), m_app_queue(app_queue), m_broker(broker) { }
55 
61  virtual void handle(EventPtr &event);
62 
63  private:
66 
69 
72  };
73 
75 
76 }}}
77 
78 #endif // FsBroker_Lib_ConnectionHandler_h
79 
Abstract base class for application dispatch handlers registered with AsyncComm.
ApplicationQueuePtr m_app_queue
Application queue.
BrokerPtr m_broker
Pointer to file system broker object.
std::shared_ptr< Event > EventPtr
Smart pointer to Event.
Definition: Event.h:228
virtual void handle(EventPtr &event)
Handles incoming events from client connections.
Declarations for DispatchHandler.
Connection handler for file system brokers.
std::shared_ptr< Broker > BrokerPtr
Smart pointer to Broker.
Definition: Broker.h:241
Hypertable definitions
Entry point to AsyncComm service.
Definition: Comm.h:61
Declarations for ApplicationQueue.
std::shared_ptr< ApplicationQueue > ApplicationQueuePtr
Shared smart pointer to ApplicationQueue object.
ConnectionHandler(Comm *comm, ApplicationQueuePtr &app_queue, BrokerPtr &broker)
Constructor.