mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 00:36:48 +00:00
Reverts 259 files that carried unrelated upstream changes through the phase-6 merge: enum class removals (cppcoreguidelines-use-enum-class), scoped_lock→lock_guard conversions (modernize-use-scoped-lock), nodestore Backend API changes (void const* key), .clang-tidy config, test infrastructure deletions, and miscellaneous develop changes. These changes belong on develop, not in the telemetry PR chain. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
369 B
C++
20 lines
369 B
C++
#pragma once
|
|
|
|
namespace xrpl::Resource {
|
|
|
|
/** The disposition of a consumer after applying a load charge. */
|
|
enum class Disposition {
|
|
/** No action required. */
|
|
ok
|
|
|
|
/** Consumer should be warned that consumption is high. */
|
|
,
|
|
warn
|
|
|
|
/** Consumer should be disconnected for excess consumption. */
|
|
,
|
|
drop
|
|
};
|
|
|
|
} // namespace xrpl::Resource
|