takimafr / soja

Stomp Over Java Api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add more abstraction on ACK and Receipt

DayS opened this issue · comments

Add a fluent API like this :

client.subscribe("topic", new MessageHandler())
    .withAckMode(Ack.CLIENT)
    .withReceiptHandler(new ReceiptHandler())
    .start();