AppFlowy/frontend/appflowy_flutter/lib/util/throttle.dart
Richard Shiue 566e7b2f40
feat: allow user scroll during generation (#7559)
* chore: add keep alive to ai writer block component

* chore: allow user scrolling during ai writer generation

* chore: pull ai writer cubit upwards

* test: fix unit tests

* chore: clear selection
2025-03-20 11:50:25 +08:00

27 lines
415 B
Dart

import 'dart:async';
class Throttler {
Throttler({
this.duration = const Duration(milliseconds: 1000),
});
final Duration duration;
Timer? _timer;
void call(Function callback) {
if (_timer?.isActive ?? false) return;
_timer = Timer(duration, () {
callback();
});
}
void cancel() {
_timer?.cancel();
}
void dispose() {
_timer?.cancel();
_timer = null;
}
}