dart:async
库中Stream.periodic
的用法介绍如下。
用法:
Stream<T>.periodic(
Duration period,
[T computation(
int computationCount
)?]
)
创建一个以 period
间隔重复发出事件的流。
事件值通过调用 computation
来计算。此回调的参数是一个整数,从 0 开始,每次事件递增。
period
必须是非负的 Duration 。
如果省略 computation
,则事件值将全部为 null
。
如果事件类型 T
不允许将 null
作为值,则不得省略 computation
。
例子:
final stream =
Stream<int>.periodic(const Duration(
seconds: 1), (count) => count * count).take(5);
stream.forEach(print); // Outputs event values 0,1,4,9,16.
相关用法
- Dart Stream.fromFutures用法及代码示例
- Dart Stream.fold用法及代码示例
- Dart Stream.map用法及代码示例
- Dart Stream.asBroadcastStream用法及代码示例
- Dart Stream.handleError用法及代码示例
- Dart Stream.where用法及代码示例
- Dart Stream.reduce用法及代码示例
- Dart Stream.join用法及代码示例
- Dart Stream.error用法及代码示例
- Dart Stream.take用法及代码示例
- Dart Stream.every用法及代码示例
- Dart Stream.lastWhere用法及代码示例
- Dart Stream.contains用法及代码示例
- Dart Stream.eventTransformed用法及代码示例
- Dart Stream.firstWhere用法及代码示例
- Dart Stream.drain用法及代码示例
- Dart Stream.empty用法及代码示例
- Dart Stream.multi用法及代码示例
- Dart Stream.distinct用法及代码示例
- Dart Stream.timeout用法及代码示例
- Dart Stream.transform用法及代码示例
- Dart Stream.singleWhere用法及代码示例
- Dart Stream.fromFuture用法及代码示例
- Dart Stream.skipWhile用法及代码示例
- Dart Stream.skip用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 Stream<T>.periodic constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。