UNPKG

@zuzuche/sentry-miniapp

Version:

用于小程序/小游戏平台的 Sentry SDK

26 lines 862 B
import { API } from "@sentry/core"; import { PromiseBuffer, SentryError } from "@sentry/utils"; /** Base Transport class implementation */ var BaseTransport = /** @class */ (function () { function BaseTransport(options) { this.options = options; /** A simple buffer holding all requests. */ this._buffer = new PromiseBuffer(30); this.url = new API(this.options.dsn).getStoreEndpointWithUrlEncodedAuth(); } /** * @inheritDoc */ BaseTransport.prototype.sendEvent = function (_) { throw new SentryError("Transport Class has to implement `sendEvent` method"); }; /** * @inheritDoc */ BaseTransport.prototype.close = function (timeout) { return this._buffer.drain(timeout); }; return BaseTransport; }()); export { BaseTransport }; //# sourceMappingURL=base.js.map