Hi all.

What do you think about an idea of module providing possibility to create 
actor by *new* operator eg.

val actor = new SimpleActor {
  override def receive: Receive = {
    case _ => sender() ! "OK"
  }
}


Those actors would be garbage collected so there will be no need to send 
PoisonPIll them.

I've prepared proof of concept: https://github.com/arkadius/akka-simple

It will be usefull? Or maybe there is already other way to use this kind of 
syntax of actors?

Arek

-- 
>>>>>>>>>>      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 http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to