blob: d2717874e8982c0f4930407b84f5fbd5f5a5a480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { setFunctionName } from "./internals.ts";
import { customInspect } from "../console.ts";
export class CountQueuingStrategyImpl implements CountQueuingStrategy {
highWaterMark: number;
constructor({ highWaterMark }: { highWaterMark: number }) {
this.highWaterMark = highWaterMark;
}
size(): 1 {
return 1;
}
[customInspect](): string {
return `${this.constructor.name} { highWaterMark: ${String(
this.highWaterMark
)}, size: f }`;
}
}
Object.defineProperty(CountQueuingStrategyImpl.prototype, "size", {
enumerable: true,
});
setFunctionName(CountQueuingStrategyImpl, "CountQueuingStrategy");
export class ByteLengthQueuingStrategyImpl
implements ByteLengthQueuingStrategy {
highWaterMark: number;
constructor({ highWaterMark }: { highWaterMark: number }) {
this.highWaterMark = highWaterMark;
}
size(chunk: ArrayBufferView): number {
return chunk.byteLength;
}
[customInspect](): string {
return `${this.constructor.name} { highWaterMark: ${String(
this.highWaterMark
)}, size: f }`;
}
}
Object.defineProperty(ByteLengthQueuingStrategyImpl.prototype, "size", {
enumerable: true,
});
setFunctionName(CountQueuingStrategyImpl, "CountQueuingStrategy");
|