srs/trunk/src/app/srs_app_reload.hpp
Winlin 5d69569f07
AI: Remove most of reload, only keep framework. (#4458)
Co-authored-by: OSSRS-AI <winlinam@gmail.com>
2025-08-30 09:44:37 -04:00

27 lines
503 B
C++

//
// Copyright (c) 2013-2025 The SRS Authors
//
// SPDX-License-Identifier: MIT
//
#ifndef SRS_APP_RELOAD_HPP
#define SRS_APP_RELOAD_HPP
#include <srs_core.hpp>
#include <string>
// The main purpose of reload is for quick application during performance optimization.
// So, we only need to keep a basic framework.
class ISrsReloadHandler
{
public:
ISrsReloadHandler();
virtual ~ISrsReloadHandler();
public:
virtual srs_error_t on_reload_vhost_chunk_size(std::string vhost);
};
#endif