Type alias IndexerWorkerDomainWithStats
Indexer
Worker
Domain
With
Stats
: { getStats
(account
: string): Promise<AccountStats<any>>; getTimeSeriesStats
(account
: string, type
: string, filters
: AccountStatsFilters): Promise<AccountTimeSeriesStats<any>>; updateStats
(account
: string, now
: number): Promise<void>; }
Type declaration
-
getStats:function
-
getTimeSeriesStats:function
-
updateStats:function
- updateStats(account: string, now: number): Promise<void>
-
Parameters
-
account: string
-
now: number
Returns Promise<void>
Describes an indexer worker domain, capable of stats processing.