Files
scylla/generic_server.hh
Pekka Enberg 1af73bec7b transport, redis: Move total_connections to generic_server::server class
Both cql_server and redis_server have the same "total_connections"
member variable so pull that up to the generic_server::server base
class.
2021-04-13 13:56:45 +03:00

59 lines
1.3 KiB
C++

/*
* Copyright (C) 2021 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "seastarx.hh"
#include <seastar/core/future.hh>
#include <seastar/net/api.hh>
#include <boost/intrusive/list.hpp>
namespace generic_server {
class connection : public boost::intrusive::list_base_hook<> {
protected:
connected_socket _fd;
public:
connection(connected_socket&& fd);
virtual future<> shutdown();
};
class server {
protected:
bool _stopping = false;
promise<> _all_connections_stopped;
uint64_t _current_connections = 0;
uint64_t _connections_being_accepted = 0;
uint64_t _total_connections = 0;
public:
virtual ~server();
protected:
void maybe_idle();
};
}