Akka.Streams.Tests.Dsl.GraphBackedFlowSpec.FlowGraphs_when_turned_into_sinks_should_work_with_a_Source C# (CSharp) Метод

FlowGraphs_when_turned_into_sinks_should_work_with_a_Source() приватный Метод

private FlowGraphs_when_turned_into_sinks_should_work_with_a_Source ( ) : void
Результат void
        public void FlowGraphs_when_turned_into_sinks_should_work_with_a_Source()
        {
            var probe = TestSubscriber.CreateManualProbe<int>(this);

            var sink = Sink.FromGraph(GraphDsl.Create(PartialGraph(), (b, partial) =>
            {
                b.From(partial.Outlet).Via(Flow.Create<string>().Select(int.Parse)).To(Sink.FromSubscriber(probe));
                return new SinkShape<int>(partial.Inlet);
            }));

            Source1.To(sink).Run(Materializer);

            ValidateProbe(probe, StandardRequests, StandardResult);
        }