Files
rippled/include/xrpl/resource/Disposition.h
2025-11-10 11:49:19 -05:00

25 lines
474 B
C++

#ifndef XRPL_RESOURCE_DISPOSITION_H_INCLUDED
#define XRPL_RESOURCE_DISPOSITION_H_INCLUDED
namespace xrpl {
namespace 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 Resource
} // namespace xrpl
#endif