Skip to content

Instantly share code, notes, and snippets.

@julioz
Created June 8, 2013 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julioz/5736830 to your computer and use it in GitHub Desktop.
Save julioz/5736830 to your computer and use it in GitHub Desktop.
ACLMessage msg = receive();
if (msg != null) {
// Processar a mensagem
String conteudo = msg.getContent();
System.out.println(conteudo);
// imprimirá "Olá mundo! Esta é minha primeira ACLMessage!"
// no caso da mensagem https://gist.github.com/julioz/5736814
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment