michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: package org.mozilla.gecko.background.sync.helpers; michael@0: michael@0: public class ExpectStoreCompletedDelegate extends DefaultStoreDelegate { michael@0: michael@0: @Override michael@0: public void onRecordStoreSucceeded(String guid) { michael@0: // That's fine. michael@0: } michael@0: michael@0: @Override michael@0: public void onStoreCompleted(long storeEnd) { michael@0: performNotify(); michael@0: } michael@0: }