如何将项目排队到akka.net队列源中

时间:2019-05-14 15:16:47

标签: akka.net-streams

在akka.net流中创建队列源之后,如何将项目添加到队列中?创建的对象中没有Enqueue,Add或Offer方法。

Source<int, ISourceQueueWithComplete<int>> source = 
   Source.Queue<int>(100, OverflowStrategy.Backpressure);

1 个答案:

答案 0 :(得分:1)