mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 06:08:11 +00:00
[Persistence] Add JSDoc
Add JSDoc to classes added/modified to support multiple persistence spaces, nasa/openmctweb#245.
This commit is contained in:
@ -36,10 +36,13 @@ define(
|
||||
};
|
||||
|
||||
/**
|
||||
* Aggregates multiple persistence providers, such that they can be
|
||||
* utilized as if they were a single object.
|
||||
* @memberof platform/persistence/aggregator
|
||||
* @constructor
|
||||
* @implements {PersistenceService}
|
||||
* @param q Angular's $q, for promises
|
||||
* @param $q Angular's $q, for promises
|
||||
* @param {PersistenceService[]} providers the providers to aggregate
|
||||
*/
|
||||
function PersistenceAggregator($q, providers) {
|
||||
var providerMap = {};
|
||||
|
Reference in New Issue
Block a user