mailbox.message(to, from, payload);
return;
}
// on startup, queue the messages until the startup completes
if (isBeforeActive() && addStartupPacket(new Message(to, from, payload))) {
// startup packets are successful
}
else {
// use default error handling
super.message(to, from, payload);