0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
TableMutatorFlushHandler.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 Hypertable. If not, see <http://www.gnu.org/licenses/>
18  */
19 
20 #ifndef HYPERTABLE_TABLEMUTATOR_FLUSH_HANDLER_H
21 #define HYPERTABLE_TABLEMUTATOR_FLUSH_HANDLER_H
22 
24 
26 
27 namespace Hypertable {
28 
31  EventPtr &event)
32  : ApplicationHandler(event), interval_handler(interval_handler) { }
33 
34  virtual void run();
35 
37 };
38 
39 
40 } // namespace Hypertable
41 
42 #endif /* HYPERTABLE_TABLEMUTATOR_FLUSH_HANDLER_H */
Declarations for TableMutatorIntervalHandler.
TableMutatorFlushHandler(TableMutatorIntervalHandlerPtr &interval_handler, EventPtr &event)
Declarations of ApplicationHandler.
std::shared_ptr< Event > EventPtr
Smart pointer to Event.
Definition: Event.h:228
Hypertable definitions
virtual void run()
Carries out the request.
TableMutatorIntervalHandlerPtr interval_handler
Base clase for application handlers.
std::shared_ptr< TableMutatorIntervalHandler > TableMutatorIntervalHandlerPtr
Smart pointer to TableMutatorIntervalHandler.