mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Co-authored-by: Bart <11445373+bthomee@users.noreply.github.com> Co-authored-by: Bart <bthomee@users.noreply.github.com>
20 lines
363 B
C++
20 lines
363 B
C++
#pragma once
|
|
|
|
namespace xrpl::Resource {
|
|
|
|
/** The disposition of a consumer after applying a load charge. */
|
|
enum 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
|