Exemplo n.º 1
0
 @Override
 public JMSProducer send(Destination destination, Serializable body) {
   ObjectMessage message = context.createObjectMessage(body);
   send(destination, message);
   return this;
 }