Skip to content

Commit 3fa1c15

Browse files
authored
Update README.md
1 parent 6e3f9e1 commit 3fa1c15

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@ final Uri uri = new Uri.Builder().scheme(SCHEME).authority(AUTHORITY).appendEnco
2929
handler.startBulkInsert(1, null, uri, getContentValues());
3030
```
3131

32+
```java
33+
public class DatabaseHandler extends AsyncQueryHandler {
34+
35+
public DatabaseHandler(ContentResolver cr) {
36+
super(cr);
37+
}
38+
39+
@Override
40+
protected void onBulkInsertComplete(int token, Object cookie, int result) {
41+
super.onBulkInsertComplete(token, cookie, result);
42+
Log.d("DatabaseHandler", "Bulk Insert Done");
43+
}
44+
}
45+
```
46+
3247
License
3348
-----
3449

0 commit comments

Comments
 (0)