--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to a topic in the Google Groups "Akka User List" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/akka-user/qWrA1sqBqiM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
Ah yes - pimp my flow! And map works fine, definitely better than Transformer.
On Jul 24, 2014 3:52 PM, "Akka Team" <akka.o...@gmail.com> wrote:
>
> Hi Eric,
>
>
>
> On Thu, Jul 24, 2014 at 3:42 PM, Eric Pederson <eri...@gmail.com> wrote:
>>
>> Ah yes - pimp my flow! And map works fine, definitely better than Transformer.
>
>
> You might still want to express the internals of your "extend your flow" pattern, mostly because of the availability of the cleanup() method. That would allow you to have a
>
> def doOnEach(f: T => Unit, whenComplete: () => Unit): Flow[T]
Wwith the caveat that it wouldn't fire after the entire Flow completes, but when the upstream completes.