mirror of
https://github.com/kunkunsh/kunkun-ext-system-info.git
synced 2025-04-04 19:26:43 +00:00
20 lines
363 B
TypeScript
20 lines
363 B
TypeScript
type QPayload<T> = {
|
|
data: T;
|
|
timestamp: Date;
|
|
};
|
|
|
|
class Q<T> {
|
|
private queue: QPayload<T>[] = [];
|
|
|
|
constructor(private maxSize: number) {}
|
|
|
|
enqueue(item: T) {
|
|
if (this.queue.length >= this.maxSize) {
|
|
throw new Error("Queue is full");
|
|
}
|
|
this.queue.push({ data: item, timestamp: new Date() });
|
|
}
|
|
|
|
|
|
}
|