Hi Andriy, yes, it would be cool to be able to spend some more time on Akka Typed, but Streams & HTTP still have priority.
To answer your question: Behaviors are just that, behaviors. You can compose them, transform them, etc. and none of these actions make them into Actors. The only call that turns a Behavior (also a composite one) into an Actor is ActorContext.spawn (and ActorSystem(…) for the initial one). Regards, Roland > 18 dec 2015 kl. 02:44 skrev Andriy Drozdyuk <[email protected]>: > > How does behavior correlate with the actor instance? > > If I create a behavior with an "And" combinator, does it create two actors? > > I've posted a more detailed question on SO: > http://stackoverflow.com/questions/34340262/does-akka-typed-create-actors-when-i-use-behavior-combinator-like-and > > I think I'm misunderstanding something. Would be cool to have more examples > of akka-typed or guides :-) > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ <http://akka.io/docs/> > >>>>>>>>>> Check the FAQ: > >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> <http://doc.akka.io/docs/akka/current/additional/faq.html> > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > >>>>>>>>>> <https://groups.google.com/group/akka-user> > --- > 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 [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/akka-user > <https://groups.google.com/group/akka-user>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. Dr. Roland Kuhn Akka Tech Lead Typesafe <http://typesafe.com/> – Reactive apps on the JVM. twitter: @rolandkuhn <http://twitter.com/#!/rolandkuhn> -- >>>>>>>>>> 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 the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
