mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
api
This commit is contained in:
@@ -72,14 +72,17 @@ protected:
|
||||
|
||||
// XXX Split into more locks.
|
||||
boost::interprocess::interprocess_upgradable_mutex mMonitorLock;
|
||||
subInfoMapType mBootAccountInfo;
|
||||
subInfoMapType mSubAccountInfo;
|
||||
subInfoMapType mSubAccountTransaction;
|
||||
boost::unordered_set<InfoSub*> mSubLedger; // ledger accepteds
|
||||
boost::unordered_set<InfoSub*> mSubLedgerAccounts; // ledger accepteds + affected accounts
|
||||
boost::unordered_set<InfoSub*> mSubTransaction; // all transactions
|
||||
boost::unordered_set<InfoSub*> mSubTxMeta; // all transaction meta
|
||||
// subInfoMapType mSubTransactionAccounts;
|
||||
subInfoMapType mSubAccount;
|
||||
subInfoMapType mSubRTAccount;
|
||||
|
||||
boost::unordered_set<InfoSub*> mSubLedger; // accepted ledgers
|
||||
boost::unordered_set<InfoSub*> mSubLedgerAccounts; // accepted ledgers + affected accounts
|
||||
boost::unordered_set<InfoSub*> mSubTransactions; // all accepted transactions
|
||||
boost::unordered_set<InfoSub*> mSubRTTransactions; // all proposed and accepted transactions
|
||||
|
||||
subInfoMapType mSubAccountTransaction; // DEPRECATED
|
||||
subInfoMapType mBootAccountInfo; // DEPRECATED
|
||||
subInfoMapType mSubAccountInfo; // DEPRECATED
|
||||
|
||||
void setMode(OperatingMode);
|
||||
|
||||
|
||||
@@ -416,6 +416,8 @@ server : Sends a message anytime the server status changes such as network conne
|
||||
ledger : Sends a message at every ledger close.
|
||||
transactions : Sends a message for every transaction that makes it into a ledger.
|
||||
rt_transactions
|
||||
accounts
|
||||
rt_accounts
|
||||
*/
|
||||
// TODO
|
||||
void WSConnection::doSubscribe(Json::Value& jvResult, const Json::Value& jvRequest)
|
||||
|
||||
Reference in New Issue
Block a user