public void stop() throws Exception {
}
public boolean send(final Message message) throws Exception {
List<Recipient> recipients = message.getRecipients();
int sent = notifier.send(recipients, new AbstractMessageSender() {
public int performSendMessage(Recipient recipient) throws Exception {
return send(message, recipient);
}
});
return sent > 0;