-1:000000000000 | 0:fb570b9cc556 |
---|---|
1 /* Any copyright is dedicated to the Public Domain. | |
2 http://creativecommons.org/publicdomain/zero/1.0/ */ | |
3 | |
4 package org.mozilla.gecko.background.sync.helpers; | |
5 | |
6 public class ExpectStoreCompletedDelegate extends DefaultStoreDelegate { | |
7 | |
8 @Override | |
9 public void onRecordStoreSucceeded(String guid) { | |
10 // That's fine. | |
11 } | |
12 | |
13 @Override | |
14 public void onStoreCompleted(long storeEnd) { | |
15 performNotify(); | |
16 } | |
17 } |