[JSDoc] Add namespace docs

WTD-1482.
This commit is contained in:
Victor Woeltjen
2015-08-07 12:13:15 -07:00
parent eaaa1a19ca
commit 31eb366e7f
26 changed files with 104 additions and 12 deletions

View File

@@ -21,6 +21,11 @@
*****************************************************************************/
/*global define*/
/**
* This bundle decorates the persistence service to maintain a local cache
* of persisted documents.
* @namespace platform/persistence/cache
*/
define(
[],
function () {

View File

@@ -21,6 +21,11 @@
*****************************************************************************/
/*global define*/
/**
* This bundle implements a persistence service which uses CouchDB to
* store documents.
* @namespace platform/persistence/cache
*/
define(
["./CouchDocument"],
function (CouchDocument) {

View File

@@ -21,6 +21,11 @@
*****************************************************************************/
/*global define*/
/**
* This bundle implements a persistence service which uses ElasticSearch to
* store documents.
* @namespace platform/persistence/elastic
*/
define(
[],
function () {

View File

@@ -22,7 +22,10 @@
/*global define,Promise*/
/**
* Module defining CoreCapabilityProvider. Created by vwoeltje on 11/7/14.
* This bundle decorates the persistence service to handle persistence
* in batches, and to provide notification of persistence errors in batches
* as well.
* @namespace platform/persistence/queue
*/
define(
['./QueuingPersistenceCapability'],