Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a client server program written using Java API. There am trying to send a message to server then server will send some reply message to Client.Then Client sending a poisonPill to Server. If server receives poisonpill message it has to shutdown.Below the code snippents for the same. In ClientActor:

remoteActor.tell(poisonPill());

In ServerActor:

public void onReceive(Object message) throws Exception {        
  if (message instanceof String) {          
    getSender().tell(message + " got something");       
  } else if (message instanceof PoisonPill) {           
    getContext().system().shutdown();       
  } 
}

But the message instanceof PoisonPill line is not executing, so that the server is always running.

Can anyone help me on this? why the line is not executing at all?

share|improve this question
The only way that line does not execute is if message is always a String. Try debugging or logging. – Thilo Jun 19 '12 at 12:18
if the message is always string , then is there anyway to check the poisonpill from client? – user1442237 Jun 19 '12 at 12:22
You remoteActor is invoking a poisonPill() method. Does it return a PoisonPill object? – Traroth Jun 19 '12 at 12:22

2 Answers

PoisonPill is automatically handled by Akka. You shouldn't terminate the ActorSystem from within the Actor. It'd be equivalent of calling System.exit(0) inside a Business Object. If you want to stop the ServerActor, do: context.stop(self)

share|improve this answer

Shouldn't it be

remoteActor.tell(new PoisonPill());
share|improve this answer
remoteActor.tell(new PoisonPill()); is not working..giving compilation error – user1442237 Jun 19 '12 at 14:00
No, it's PoisonPill.getInstance() – Viktor Klang Jun 19 '12 at 19:16
PoisonPill.getInstance() is also throwing compilation error – user1442237 Jun 20 '12 at 6:35
PoisonPill.getInstance() also not working – user1442237 Jun 20 '12 at 9:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.