He-Pin(kerr)

Results 338 issues of He-Pin(kerr)

After I looked into fs and zio stream and reactor-core I found some operators which would be nice to be added to akka stream: link to https://rxjs.dev/api too. - zipWithLeft...

If you write a filter with collect, then it will failed with : ```scala "complete without demand if remaining elements are filtered out with collect" in { Source(1 to 1000).collect({...

1 - triaged
t:stream

![image](https://user-images.githubusercontent.com/501740/190140697-ea5d6836-6dff-4d7c-be0c-09684c38669e.png)

1 - triaged
t:stream

Which will help distinguishing with the `expectCancellationWithCause` one.

0 - new
t:stream

Sometime a graphStage can be failed with an `AbruptTerminationException` or `AbruptStageTerminationException`, add a common trait for them can be easy to write test for abrupt termination.

1 - triaged
t:stream

``` [09-14 04:46:23.868] [info] - must use dedicated blocking-io-dispatcher by default *** FAILED *** (34 milliseconds) [09-14 04:46:23.868] [info] java.lang.AssertionError: Expected Actor[akka://MapWithResourceSpec/system/Materializers/StreamSupervisor-1176/flow-8-2-mapWithResource#1912087400] to use dispatcher [akka.stream.materializer.blocking-io-dispatcher], yet used: [akka.actor.default-dispatcher] [09-14...

failed
t:stream

I think these class should be marked as `final class`.

1 - triaged
t:stream

These methods are missing.

0 - new
t:stream

`Source.elements` will be easy to use than the current `Source.from(Arrays.asList(...))` In Flux we can use `Flux.fromArray` and `Flux.just(T...t)` refs:https://github.com/akka/akka/issues/17923 refs: https://github.com/akka/akka/pull/17950 refs: https://github.com/scala/bug/issues/8743 ```java ```

Just a like `.recoverWithRetries(-1, { case _: Throwable => Source.empty })` which recover the error with a complete. And in fs2 there is a `mask` method: ```scala def mask: Stream[F,...