aboutsummaryrefslogtreecommitdiff
path: root/src/background/repositories/RepeatRepository.ts
blob: e3ab43db522f53f1e5fd791cb09d2e7deab2e162 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { injectable } from "tsyringe";
import { Operation } from "../../shared/operations";
import MemoryStorage from "../infrastructures/MemoryStorage";

const REPEAT_KEY = "repeat";

@injectable()
export default class RepeatRepository {
  private cache: MemoryStorage;

  constructor() {
    this.cache = new MemoryStorage();
  }

  getLastOperation(): Operation | undefined {
    return this.cache.get(REPEAT_KEY);
  }

  setLastOperation(op: Operation): void {
    this.cache.set(REPEAT_KEY, op);
  }
}