Page History
...
정의하는것입니다. 데이터의 흐름이 시작하여 종착지까지 도착하는것을 정의하는
최소단위가 RunnableGraph 입니다.
스트림처리의 확장
스트림처리는 AKKA의 주제에서도 광범위하고 어렵습니다.
배관공 게임도 분명 끝판 스테이지는 어렵듯이
우리는 위와같이 복잡한 스트림처리를 단순화하기위해 스트림의 결합요소에 대해 더 연구해보겠습니다.
다양한 소스/싱크처리
Code Block | ||||
---|---|---|---|---|
| ||||
// Create a source from an Iterable Source.From(new List<int> {1, 2, 3}); // Create a source from a Task Source.FromTask(Task.FromResult("Hello Streams!")); // Create a source from a single element Source.Single("only one element") // an empty source Source.Empty<int>(); // Sink that aggregates over the stream and returns a Task // of the final result as its materialized value Sink.Aggregate<int, int>(0, (sum, i) => sum + i); // Sink that returns a Task as its materialized value, // containing the first element of the stream Sink.First<int>(); // A Sink that consumes a stream without doing anything with the elements Sink.Ignore<int>(); // A Sink that executes a side-effecting call for every element of the stream Sink.ForEach<string>(Console.WriteLine); |
...
Info |
---|
눈치 채고 있는지 모르겠지만, 스트림에대한 샘플코드가 점점 더 많은 일을 하고 있지만 스트림 처리에 사용되는 코드를 점점 줄어들고 있습니다. 스트림 처리가 다양한 방식으로 조합이 되어서, 직관적이고 가장 최소의 코드를 작성하는것이 어렵기도하고, 많은 연습이 필요합니다. 여기까지 하나의 입력과 출력을 사용하는 단선처리 과정에대한 스트림처리였으며 다음장부터는 여러개의 입력과 출력을 사용하여 스트림을 처리하는것에대해 살펴보겠습니다. |