From fdb4633d3e9158e457d57e820df6e1efb4df39c2 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 7 May 2023 15:22:54 +0200 Subject: Update to support notes + new style --- Map/Logic/Debouncer.swift | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Map/Logic/Debouncer.swift (limited to 'Map/Logic/Debouncer.swift') diff --git a/Map/Logic/Debouncer.swift b/Map/Logic/Debouncer.swift new file mode 100644 index 0000000..cd7960a --- /dev/null +++ b/Map/Logic/Debouncer.swift @@ -0,0 +1,21 @@ +import Foundation + +class Debouncer { + + // MARK: - Properties + private let queue = DispatchQueue.global(qos: .utility) + private var workItem = DispatchWorkItem(block: {}) + private var interval: TimeInterval + + // MARK: - Initializer + init(seconds: TimeInterval) { + self.interval = seconds + } + + // MARK: - Debouncing function + func debounce(action: @escaping (() -> Void)) { + workItem.cancel() + workItem = DispatchWorkItem(block: { action() }) + queue.asyncAfter(deadline: .now() + interval, execute: workItem) + } +} -- cgit