Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • void publish(TopicId topic, byte[] payload, Transaction transaction, boolean buffer) throws TopicNotFoundException;  

For committing messages published transactionally:

  • void commit(TopicId topic, Transaction transaction) throws TopicNotFoundException;

For rolling back messages that were published transactionally:

  • void rollback(TopicId topic, Transaction transaction) throws TopicNotFoundException;

 


Consuming Message:

For consuming messages non-transactionally:

...