sentry-uniapp
Version:
用于Uniapp/小程序/快应用等平台的 Sentry SDK
26 lines • 866 B
JavaScript
import { API } from "@sentry/core";
import { makePromiseBuffer, 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 = makePromiseBuffer(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