mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
* Refine AUTHORS.txt to AUTHORS.md, etc. 5.0.8 * Update README.md * Update README.md * Refine format for AUTHORS.md
38 lines
725 B
C++
38 lines
725 B
C++
//
|
|
// Copyright (c) 2013-2021 The SRS Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#ifndef SRS_KERNEL_BALANCE_HPP
|
|
#define SRS_KERNEL_BALANCE_HPP
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
/**
|
|
* the round-robin load balance algorithm,
|
|
* used for edge pull and other multiple server feature.
|
|
*/
|
|
class SrsLbRoundRobin
|
|
{
|
|
private:
|
|
// current selected index.
|
|
int index;
|
|
// total scheduled count.
|
|
uint32_t count;
|
|
// current selected server.
|
|
std::string elem;
|
|
public:
|
|
SrsLbRoundRobin();
|
|
virtual ~SrsLbRoundRobin();
|
|
public:
|
|
virtual uint32_t current();
|
|
virtual std::string selected();
|
|
virtual std::string select(const std::vector<std::string>& servers);
|
|
};
|
|
|
|
#endif
|
|
|