mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 00:36:48 +00:00
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
|