mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 18:33:08 +02:00
6589e8a390
* wip * update pnpm-lock * use our own DevNull * fix * deliverJobConcurrencyをmacSocketsで割ってソケット数にする
11 lines
321 B
TypeScript
11 lines
321 B
TypeScript
import { Writable, WritableOptions } from "node:stream";
|
|
|
|
export class DevNull extends Writable implements NodeJS.WritableStream {
|
|
constructor(opts?: WritableOptions) {
|
|
super(opts);
|
|
}
|
|
|
|
_write (chunk: any, encoding: BufferEncoding, cb: (err?: Error | null) => void) {
|
|
setImmediate(cb);
|
|
}
|
|
}
|