Hi, I have an actor that sends some messages to self
for(instance<-0 until numberOfInstances) self ! Event1(instance,0,date) This is how I'm creating the actor in question: context.actorOf(Props(new OffHeap(date,populationSize,isLast)),"oh".concat( > date)) I'm getting DeadLetters, indicating that it can't find itself. Does it have something to do with the extra information appending to the path (shown in bold)? What is this indicating? > [info] > DeadLetter(Event1(1,0,20130813),Actor[akka://system/user/p/oh20130813 > *#-673346022*],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(2,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(3,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(4,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(5,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(6,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) > [info] > DeadLetter(Event1(7,0,20130813),Actor[akka://system/user/p/oh20130813#-673346022],Actor[akka://system/user/p/oh20130813#-673346022]) Thanks, Bruce -- >>>>>>>>>> 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.
