mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
- Introduced event subscription infrastructure for users. - Added ability to subscribe to ledger events. - Updated client lib for event subscription support.
15 lines
255 B
C++
15 lines
255 B
C++
#ifndef _HP_USR_USER_COMMON_
|
|
#define _HP_USR_USER_COMMON_
|
|
|
|
namespace usr
|
|
{
|
|
// List of notification channels users can subscribe to.
|
|
enum NOTIFICATION_CHANNEL
|
|
{
|
|
UNL_CHANGE = 0,
|
|
LEDGER_EVENT = 1
|
|
};
|
|
|
|
} // namespace usr
|
|
|
|
#endif |