mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-09 15:16:42 +02:00
Remove unused lambda parameter
This commit is contained in:
parent
384e71b7c9
commit
5a3abc31ed
2 changed files with 6 additions and 5 deletions
|
@ -83,8 +83,9 @@ private:
|
|||
session_ptr getStreamSession(StreamSession* session) const;
|
||||
void ProcessRequest(const jsonrpcpp::request_ptr request, jsonrpcpp::entity_ptr& response, jsonrpcpp::notification_ptr& notification) const;
|
||||
void cleanup();
|
||||
/// save the server state deferred after 2s without a change to prevent blocking and too much disk io
|
||||
void saveConfig();
|
||||
/// Save the server state deferred to prevent blocking and lower disk io
|
||||
/// @param deferred the delay after the last call to saveConfig
|
||||
void saveConfig(const std::chrono::milliseconds& deferred = std::chrono::seconds(2));
|
||||
|
||||
mutable std::recursive_mutex sessionsMutex_;
|
||||
mutable std::recursive_mutex clientMutex_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue