You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public <T> Multi<T> streams(Iterable<? extendsPublisher<T>> iterable) {
Is the method in MultiMerge not allowing Iterable<? extends Publisher<T>> on purpose? That way, we can't use, for example, a List<Multi<T>> as parameter.
The text was updated successfully, but these errors were encountered:
In Mutiny 0.15.0, MultiConcat and MultiMerge differ slightly in the method signature of
streams(...
:MultiMerge.java:
MultiConcat.java:
Is the method in
MultiMerge
not allowingIterable<? extends Publisher<T>>
on purpose? That way, we can't use, for example, aList<Multi<T>>
as parameter.The text was updated successfully, but these errors were encountered: