在akka.net流中创建队列源之后,如何将项目添加到队列中?创建的对象中没有Enqueue,Add或Offer方法。
Source<int, ISourceQueueWithComplete<int>> source =
Source.Queue<int>(100, OverflowStrategy.Backpressure);
答案 0 :(得分:1)
这是OfferAsync,您可以在单元测试中举例,例如https://github.com/akkadotnet/akka.net/blob/master/src/core/Akka.Streams.Tests/Dsl/QueueSourceSpec.cs