String notifoUsername = getConfig().notifoUsername;
String notifoApiSecret = getConfig().notifoApiSecret;
try {
NotifoClient client =
new NotifoHttpClient(notifoUsername,
notifoApiSecret);
NotifoMessage message =
new NotifoMessage(notifoUsername,
"You're at the head of the push queue.");
client.sendMessage(message);
}
catch(Throwable t) {
System.err.println(t.getMessage());
}
}