/**
  * Asynchronously send a simple text message.
  *
  * @param message
  * @throws IOException
  */
 public void sendAsync(String message) {
   sendAsync(new Payload(message));
 }