How to enqueue items into akka.net queue source

328 Views Asked by At

After creating a queue source in akka.net streams, how can I add items to the queue? There is no Enqueue, Add or Offer method in created object.

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

There are 1 best solutions below

0
On