nsn-service
Version:
NSN服务组件
146 lines (129 loc) • 4.47 kB
JavaScript
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
import { HttpMethod, RequestCxt } from 'nsn-enum';
import { request } from './core';
export var EhcacheRequest = {
names: function () {
var _names = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
return _context.abrupt("return", request({
ctx: RequestCxt.EHCACHE,
uri: '/names'
}));
case 1:
case "end":
return _context.stop();
}
}
}, _callee);
}));
function names() {
return _names.apply(this, arguments);
}
return names;
}(),
keys: function () {
var _keys = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(params) {
return regeneratorRuntime.wrap(function _callee2$(_context2) {
while (1) {
switch (_context2.prev = _context2.next) {
case 0:
return _context2.abrupt("return", request({
ctx: RequestCxt.EHCACHE,
uri: '/keys',
options: {
params: params
}
}));
case 1:
case "end":
return _context2.stop();
}
}
}, _callee2);
}));
function keys(_x) {
return _keys.apply(this, arguments);
}
return keys;
}(),
value: function () {
var _value = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3(params) {
return regeneratorRuntime.wrap(function _callee3$(_context3) {
while (1) {
switch (_context3.prev = _context3.next) {
case 0:
return _context3.abrupt("return", request({
ctx: RequestCxt.EHCACHE,
uri: '/value',
options: {
params: params
}
}));
case 1:
case "end":
return _context3.stop();
}
}
}, _callee3);
}));
function value(_x2) {
return _value.apply(this, arguments);
}
return value;
}(),
remove: function () {
var _remove = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4(data) {
return regeneratorRuntime.wrap(function _callee4$(_context4) {
while (1) {
switch (_context4.prev = _context4.next) {
case 0:
return _context4.abrupt("return", request({
ctx: RequestCxt.EHCACHE,
uri: '/remove',
options: {
method: HttpMethod.POST,
data: data
}
}));
case 1:
case "end":
return _context4.stop();
}
}
}, _callee4);
}));
function remove(_x3) {
return _remove.apply(this, arguments);
}
return remove;
}(),
clear: function () {
var _clear = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee5() {
return regeneratorRuntime.wrap(function _callee5$(_context5) {
while (1) {
switch (_context5.prev = _context5.next) {
case 0:
return _context5.abrupt("return", request({
ctx: RequestCxt.EHCACHE,
uri: '/clear',
options: {
method: HttpMethod.POST
}
}));
case 1:
case "end":
return _context5.stop();
}
}
}, _callee5);
}));
function clear() {
return _clear.apply(this, arguments);
}
return clear;
}()
};