Java Code Examples for android.arch.persistence.room.OnConflictStrategy#IGNORE
The following examples show how to use
android.arch.persistence.room.OnConflictStrategy#IGNORE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AppDao.java From cashuwallet with MIT License | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void createChain(Chain chain);
Example 2
Source File: AppDao.java From cashuwallet with MIT License | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void createMultiwallet(Multiwallet multiwallet);
Example 3
Source File: AppDao.java From cashuwallet with MIT License | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void createWallet(Wallet wallet);
Example 4
Source File: AppDao.java From cashuwallet with MIT License | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void createTransaction(Transaction transaction);
Example 5
Source File: AppDao.java From cashuwallet with MIT License | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void insertUnspents(List<Unspent> unspents);
Example 6
Source File: HeadlinesDao.java From NewsApp with GNU General Public License v3.0 | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void bulkInsert(List<Article> articles);
Example 7
Source File: SourcesDao.java From NewsApp with GNU General Public License v3.0 | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void bulkInsert(List<Source> sources);
Example 8
Source File: LogcatDao.java From Fairy with Apache License 2.0 | 4 votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void insertIfNotExits(LogcatContent content);
Example 9
Source File: MessageDao.java From demo-firebase-android with The Unlicense | votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) void inertMessage(DefaultMessage message);
Example 10
Source File: MessageDao.java From demo-firebase-android with The Unlicense | votes |
@Insert(onConflict = OnConflictStrategy.IGNORE) Long[] insertAll(List<DefaultMessage> messages);