throttling:Dart的节流阀和去抖动器

时间:2024-03-28 13:51:43
【文件属性】:

文件名称:throttling:Dart的节流阀和去抖动器

文件大小:10KB

文件格式:ZIP

更新时间:2024-03-28 13:51:43

Dart

从派生 节流Dart库 包含“节流”和“反跳”类 使用 请参阅上的使用演示。 节流的例子 final Throttling thr = new Throttling (duration : Duration (seconds : 2 )); thr. throttle (() { print ( ' *ping #1' );}); await Future . delayed ( Duration (seconds : 1 )); thr. throttle (() { print ( ' *ping #2' );}); await Future . delayed ( Duration (seconds : 1 )); thr. throttle (() { print ( ' *ping #3' );}); 防弹跳示例 final Debouncing deb = new Deboun


【文件预览】:
throttling-master
----.gitignore(1KB)
----pubspec.yaml(316B)
----LICENSE(1KB)
----CHANGELOG.md(501B)
----README.md(1011B)
----example()
--------.gitignore(1KB)
--------pubspec.yaml(345B)
--------README.md(770B)
--------lib()
----lib()
--------src()
--------flutter_throttling.dart(1KB)
----test()
--------throttling_test.dart(3KB)
----analysis_options.yaml(102B)

网友评论