記事の内容
この記事では、DartのStreamの使い方を説明します。
Streamの仕組み
Streamとは、「ある値を入れて」、「ある値を出す」仕組みです。
実際に例を見ていきましょう。
「StreamController」というものを使って、streamをコントロールします。
import 'dart:async'; | |
main() { | |
final controller = StreamController(); | |
controller.sink.add(1); | |
controller.sink.add(2); | |
controller.stream.listen((value){ | |
print(value); | |
}); | |
} | |
// 1 | |
// 2 |
順番が変わっても、動作します。
import 'dart:async'; | |
// この順番でも動作します | |
main() { | |
final controller = StreamController(); | |
controller.stream.listen((value) { | |
print(value); | |
}); | |
controller.sink.add(1); | |
controller.sink.add(2); | |
} | |
// 1 | |
// 2 |
import 'dart:async'; | |
main() { | |
final controller = StreamController(); | |
controller.sink.add(1); | |
controller.sink.add(2); | |
controller.stream.listen((value) { | |
print(value); | |
}); | |
controller.sink.add(3); | |
controller.sink.add(4); | |
} | |
// 1 | |
// 2 | |
// 3 | |
// 4 |
int型だけではなく、あらゆる値を出し入れすることができます。
import 'dart:async'; | |
main() { | |
final controller = StreamController(); | |
controller.sink.add(1); | |
controller.sink.add(2.0); | |
controller.sink.add('Hello'); | |
controller.sink.add([10, 20.0, 'World']); | |
controller.sink.add(null); | |
controller.stream.listen((value){ | |
print(value); | |
}); | |
} | |
// 1 | |
// 2 | |
// Hello | |
// [10, 20, World] | |
// null |
例外処理
例外処理を行うこともできます。
例外は、「onError」でcatchします。
import 'dart:async'; | |
// 例外処理を行うこともできます。 | |
void addLessThanFive(StreamController controller, int value){ | |
if(value < 5){ | |
controller.sink.add(value); | |
} else { | |
controller.sink.addError(StateError('$value is not less than 5')); | |
} | |
} | |
main() { | |
final controller = StreamController(); | |
addLessThanFive(controller, 1); | |
addLessThanFive(controller, 2); | |
addLessThanFive(controller, 3); | |
addLessThanFive(controller, 4); | |
addLessThanFive(controller, 5); | |
controller.stream.listen((value){ | |
print(value); | |
}, onError: (error){ | |
print(error); | |
}); | |
} | |
// 1 | |
// 2 | |
// 3 | |
// 4 | |
// Bad state: 5 is not less than 5 |
Streamをcloseする
Streamをcloseして、その時に行う処理を書くこともできます。
「onDone」という項目で、closeした時の処理を行います。
import 'dart:async'; | |
void addLessThanFive(StreamController controller, int value){ | |
if(value < 5){ | |
controller.sink.add(value); | |
} else { | |
controller.sink.addError(StateError('$value is not less than 5')); | |
} | |
} | |
// Streamをcloseします。 | |
main() { | |
final controller = StreamController(); | |
addLessThanFive(controller, 1); | |
addLessThanFive(controller, 2); | |
addLessThanFive(controller, 3); | |
addLessThanFive(controller, 4); | |
addLessThanFive(controller, 5); | |
controller.close(); | |
controller.stream.listen((value){ | |
print(value); | |
}, onError: (error){ | |
print(error); | |
}, onDone: (){ | |
print('controller was closed'); | |
}); | |
} | |
// 1 | |
// 2 | |
// 3 | |
// 4 | |
// Bad state: 5 is not less than 5 | |
// controller was closed |
closeをした後は、「新しい値」を追加することは、できなくなります。
import 'dart:async'; | |
void addLessThanFive(StreamController controller, int value){ | |
if(value < 5){ | |
controller.sink.add(value); | |
} else { | |
controller.sink.addError(StateError('$value is not less than 5')); | |
} | |
} | |
main() { | |
final controller = StreamController(); | |
addLessThanFive(controller, 1); | |
addLessThanFive(controller, 2); | |
addLessThanFive(controller, 3); | |
addLessThanFive(controller, 4); | |
addLessThanFive(controller, 5); | |
controller.close(); | |
// closeした後に追加することはできません | |
addLessThanFive(controller, 6); | |
controller.stream.listen((value){ | |
print(value); | |
}, onError: (error){ | |
print(error); | |
}, onDone: (){ | |
print('controller was closed'); | |
}); | |
} | |
// Uncaught Error: Bad state: Cannot add event after closing |
-
-
【Dart入門】streamとasyncの使い方
streamとasync 例を見ながら、説明していきます。 async関数の中では「await for」を使ってStreamの値を取り出すことができます。 また、「async*」関数の中で「yield」キーワードを使うことで、返り値のStr ...