Files
scylladb/compaction/compaction_weight_registration.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

38 lines
873 B
C++

/*
* Copyright (C) 2017-present ScyllaDB
*
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
*/
#pragma once
namespace compaction {
class compaction_manager;
class compaction_weight_registration {
compaction_manager* _cm;
int _weight;
public:
compaction_weight_registration(compaction_manager* cm, int weight);
compaction_weight_registration& operator=(const compaction_weight_registration&) = delete;
compaction_weight_registration(const compaction_weight_registration&) = delete;
compaction_weight_registration& operator=(compaction_weight_registration&& other) noexcept;
compaction_weight_registration(compaction_weight_registration&& other) noexcept;
~compaction_weight_registration();
// Release immediately the weight hold by this object
void deregister();
int weight() const;
};
}