mirror of https://github.com/apache/activemq.git
Opps miss a couple of commits with that last change.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@741329 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
180b0ec4ab
commit
273933378b
|
@ -46,6 +46,6 @@ abstract public class AbstractMessageStore implements MessageStore {
|
|||
public void setMemoryUsage(MemoryUsage memoryUsage) {
|
||||
}
|
||||
|
||||
public void setBatch(MessageId messageId) throws IOException {
|
||||
public void setBatch(MessageId messageId) throws IOException, Exception {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -412,7 +412,7 @@ public class JournalMessageStore extends AbstractMessageStore {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setBatch(MessageId messageId) {
|
||||
public void setBatch(MessageId messageId) throws Exception {
|
||||
peristenceAdapter.checkpoint(true, true);
|
||||
longTermStore.setBatch(messageId);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue