由 Pipe 创建的 "read" 端。
读取流将一直监听,直到管道的 "write" 端(即 Pipe.write)关闭。
final pipe = await Pipe.create();
pipe.read.transform(utf8.decoder).listen((data) {
print(data);
}, onDone: () => print('Done'));
属性
-
first → Future<
List< int> > - 此流的第一个元素。无设置器继承
- hashCode → int
- 此对象的哈希码。无设置器继承
- isBroadcast → bool
- 此流是否为广播流。无设置器继承
-
isEmpty → Future<
bool> - 此流是否包含任何元素。无设置器继承
-
last → Future<
List< int> > - 此流的最后一个元素。无设置器继承
-
length → Future<
int> - 此流中的元素数量。无设置器继承
- runtimeType → Type
- 对象的运行时类型表示。无设置器继承
-
single → Future<
List< int> > - 此流的单个元素。无设置器继承
方法
-
any(
bool test(List< int> element)) → Future<bool> - 检查
test
是否接受此流提供的任何元素。继承 -
asBroadcastStream(
{void onListen(StreamSubscription< List< subscription)?, void onCancel(StreamSubscription<int> >List< subscription)?}) → Stream<int> >List< int> > - 返回一个多订阅流,它产生与这个流相同的事件。继承
-
asyncExpand<
E> (Stream< E> ? convert(List<int> event)) → Stream<E> - 将每个元素转换为异步事件的序列。继承
-
asyncMap<
E> (FutureOr< E> convert(List<int> event)) → Stream<E> - 创建一个新的流,其中每个数据事件都异步映射到新的事件。继承
-
cast<
R> () → Stream< R> - 将此流适配为
Stream<R>
。继承 -
contains(
Object? needle) → Future< bool> - 返回
needle
是否出现在此流提供的元素中。继承 -
distinct(
[bool equals(List< int> previous, List<int> next)?]) → Stream<List< int> > - 跳过与上一个数据事件相等的数据事件。继承
-
drain<
E> ([E? futureValue]) → Future< E> - 丢弃此流上的所有数据,但会信号完成或发生错误。继承
-
elementAt(
int index) → Future< List< int> > - 返回此流第
index
个数据事件的值。继承 -
every(
bool test(List< int> element)) → Future<bool> - 检查
test
是否接受此流提供的所有元素。继承 -
expand<
S> (Iterable< S> convert(List<int> element)) → Stream<S> - 将此流的每个元素转换为一组元素。继承
-
firstWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 查找此流中与
test
匹配的第一个元素。继承 -
fold<
S> (S initialValue, S combine(S previous, List< int> element)) → Future<S> - 通过反复应用
combine
来合并一系列值。继承 -
forEach(
void action(List< int> element)) → Future<void> - 对此流的每个元素执行
action
。继承 -
handleError(
Function onError, {bool test(dynamic error)?}) → Stream< List< int> > - 创建一个包装流,拦截此流中的一些错误。继承
-
join(
[String separator = ""]) → Future< String> - 将元素的字符串表示形式合并成单个字符串。继承
-
lastWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 查找流中符合
test
的最后一个元素。继承 -
listen(
void onData(List< int> event)?, {Function? onError, void onDone()?, bool? cancelOnError}) → StreamSubscription<List< int> > - 为此流添加一个订阅。继承
-
map<
S> (S convert(List< int> event)) → Stream<S> - 将此流的每个元素转换成一个新的流事件。继承
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时被调用。继承
-
pipe(
StreamConsumer< List< streamConsumer) → Futureint> > - 将此流的的事件管道输入到
streamConsumer
。继承 -
reduce(
List< int> combine(List<int> previous, List<int> element)) → Future<List< int> > - 通过反复应用
combine
来合并一系列值。继承 -
singleWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 查找该流中匹配
test
的单个元素。继承 -
skip(
int count) → Stream< List< int> > - 跳过该流中的前
count
个数据事件。继承 -
skipWhile(
bool test(List< int> element)) → Stream<List< int> > - 在匹配
test
条件的情况下跳过该流的数据事件。继承 -
take(
int count) → Stream< List< int> > - 提供该流的前
count
个数据事件(最多)。继承 -
takeWhile(
bool test(List< int> element)) → Stream<List< int> > - 当
test
成功时,传递数据事件。继承 -
timeout(
Duration timeLimit, {void onTimeout(EventSink< List< sink)?}) → Stream<int> >List< int> > - 创建一个新的流,其事件与这个流相同。继承
-
toList(
) → Future< List< List< >int> > - 将此流的所有元素收集到一个 List 中。继承
-
toSet(
) → Future< Set< List< >int> > - 将此流的数据收集到一个 Set 中。继承
-
toString(
) → String - 此对象的字符串表示。继承
-
transform<
S> (StreamTransformer< List< streamTransformer) → Stream<int> , S>S> - 将
streamTransformer
应用到此流上。继承 -
where(
bool test(List< int> event)) → Stream<List< int> > - 从这个流创建一个新的流,丢弃一些元素。继承