oday
06/02/2018, 8:45 PMoverride fun insertRows(rows: MutableCollection<RealmUserEntity>): Single<Unit> {
realmDB = Realm.getDefaultInstance()
return Single.fromCallable {
realmDB.executeTransaction {
realmDB.insert(rows)
}
}
}