Configuring Type Mapping

The final step that's left before we can start using the GetResolver is to add it to the Type Mappings configuration. This is the call that looks like this:

INSTANCE = DefaultStorIOSQLite.builder()
.sqliteOpenHelper(new StorIODbHelper(context))
.addTypeMapping(StockUpdate.class, SQLiteTypeMapping.
<StockUpdate>builder()
.putResolver(new StockUpdatePutResolver())
.getResolver(new StockUpdateGetResolver())
.deleteResolver(createDeleteResolver())
.build())
.build();

Here, we need to find the following line that was a used to create a stub interface:

.getResolver(createGetResolver())

Now, we need to replace it with this:

.getResolver(new StockUpdateGetResolver())

We are now ready to read the data from the database!

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.221.66.185