@Override
public void sendSync(Message message) throws SuspendExecution {
final ActorRef a = getActor();
if (a != null)
a.sendSync(message);
}
@Override
public boolean send(Message message, long timeout, TimeUnit unit) throws SuspendExecution, InterruptedException {
final ActorRef a = getActor();