Excellent, I learned the pipe pattern while cleaning my appartment.
@russell29753 жыл бұрын
This youtube series and linked blog is incredibly helpful, I've been cutting scala code for over 5 years now - and this series is still clarifying what I already know, and teaching new elements. Really appreciate the effort you put into this.
@rockthejvm3 жыл бұрын
Glad it helps!
@vin57183 жыл бұрын
This video helps a lot, solving all concurrency problem with Akka Actor. I would like to see how this for handling Akka stream. Like creating a stream on an actor when receive a message and pipe back all the values from the stream to the actor mailbox to handle it.
@rockthejvm3 жыл бұрын
For Akka Streams, this happens automagically.
@carlossaravia1934 жыл бұрын
I just started learning Akka. This content is really helpful and informative. I hope to see more in the future !
@vicc88814 жыл бұрын
Great for you!
@rockthejvm4 жыл бұрын
More incoming!
@xbmarx4 жыл бұрын
Loving the Akka Typed content!
@rockthejvm4 жыл бұрын
More incoming!
@pkjacobpullolickal70482 жыл бұрын
awesome!!
@lorenzogabriele95334 жыл бұрын
Very nice video! A question: is it stack safe to call the function that returns the behaviour recursively as you do in V3?
@daniellopes68744 жыл бұрын
It is not called recursively. It just returns the Behavior which it used to handle the next message. Only when that handling happens it is called again to return the next Behavior which most likely happens on another Thread.
@rockthejvm4 жыл бұрын
Exactly. We also briefly talk about it in the article if you're interested: blog.rockthejvm.com/pipe-pattern/