initi.doc/docfiles/providers/managers/datasource/manager.js

39 lines
780 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* ### Каталог источников данных
*
* Менеджер предназначеный для работы с датасорсами.
*
* ```bash
* // доступ
* ps.pl.datasource_manager
* ```
*
* @group manager
* @namespace Datasource
* @extends manager
*/
function Datasource() {
/**
*
* @public
* @function datasource_request
* @param {v2.vc} _data данные, которые нужно передать при запросе.
* @memberof Datasource
* @returns {Promise}
*/
this.datasource_request = function (_data) {
};
/**
*
* @public
* @function catalog
* @memberof Datasource
* @returns {v2.vc}
*/
this.catalog = function () {
}
}