有关使用RxAndroid,Dagger 2和Realm的Android的问题

时间:2017-01-21 16:15:26

标签: android realm dagger-2 rx-android

我目前正在开发一款应用程序,并希望使用Android当前最先进的库:RxAndroid,Dagger2和Realm。我在网上找不到好的例子,所以我不得不在这里问。

1。为什么我应该使用Observable作为Realm查询的返回类型?

public Observable<Bla> getBla() {
    Bla b = realm.where(Bla.class).findFirst();
    return Observable.just(b);
}

在大多数情况下,Realm查询在UIThread上运行,所以为什么我只是将结果返回为List而不是

Observable<List<Bla>>

也许有人知道这个lib结合领域的一个非常好的例子?

2。为什么我能够在模块中没有提及提供者的情况下注入服务。我的建筑有什么问题吗?

@Inject
TableService mTableService;

(以下代码)

3。 ServiceComponent需要AppComponent中的应用程序,如何正确配置@Component?

@Singleton
@Component(modules = {AppModule.class, ServiceModule.class})
public interface AppComponent {

    void inject(MainActivity activity);
}

@Singleton
@Component(modules = {AppModule.class, ServiceModule.class})
public interface ServiceComponent {

    void inject(MainActivity activity);
}

public class AppModule {

    Application mApplication;

    public AppModule(Application application) {
        mApplication = application;
    }

    @Provides
    @Singleton
    Application providesApplication() {
        return mApplication;
    }

    @Provides
    @Singleton
    RealmConfiguration provideRealmConfiguration(Application application) {
        return new RealmConfiguration.Builder(application)
               .schemaVersion(1)
               .deleteRealmIfMigrationNeeded()
               .build();
    }

    @Provides
    Realm provideRealm(RealmConfiguration realmConfiguration) {
        try {
            return Realm.getInstance(realmConfiguration);
        } catch (Exception cause) {
            Realm.deleteRealm(realmConfiguration);
            return Realm.getInstance(realmConfiguration);
        }
    }
}

@Module
public class ServiceModule {

    public ServiceModule() {
    }

    @Provides
    @Singleton
    GuestService provideGuestService(Realm realm) {
        return new GuestService(realm);
    }
}

public class Application extends android.app.Application {

    private AppComponent mAppComponent;

    @Override
    public void onCreate() {
        super.onCreate();

        mAppComponent = DaggerAppComponent.builder()
                .appModule(new AppModule(this))
                .build();

    }

    public AppComponent getAppComponent() {
        return mAppComponent;
    }
}

谢谢!

1 个答案:

答案 0 :(得分:3)

1。)RealmResults<T>是自动更新的,如果您向RealmChangeListener添加RealmResults,则只要基础数据发生变化,就会调用它。

private final RealmChangeListener listener = new RealmChangeListener() {
    @Override
    public void onChange(Object results) {
        notifyDataSetChanged();
    }
};

但是当您在asObservable()上致电RealmResults时,会创建一个Observable<RealmResults<T>>,会自动附加RealmChangeListener通知您更改,并在您取消订阅时将其删除。如果选中默认的RealmObservableFactory实现,则可以查看确切的行为。

因此,它确实是为您的结果添加RealmChangeListener的简写,以便您可以随时更新您的观看次数。

Subscription subscription = RxTextView.textChanges(editText).switchMap(charSequence -> 
    realm.where(SomeObject.class)
         .contains("searchField", charSequence.toString(), Case.INSENSITIVE)
         .findAllAsync()
         .asObservable())
.filter(RealmResults::isLoaded) //
.subscribe(objects -> adapter.updateData(objects));

2。)您可能已经指定了@Inject带注释的构造函数。

public class TableService {
    @Inject
    Application application;

    @Inject
    public TableService() {
    }
}

3。)Typically you should have 1 component / scope.

编辑:

  
      
  1. 为什么我应该使用Observable作为Realm查询的返回类型?
  2.   
public Observable<Bla> getBla() {
    Bla b = realm.where(Bla.class).findFirst();
    return Observable.just(b);
}

与Realm一起使用并不合理,因为它不会听取更改。

使用

更合理
public Observable<Blah> getBla() {
    Blah blah = realm.where(Blah.class).findFirst();
    if(blah == null) {
        return Observable.empty();
    } else {
        return blah.asObservable();
    }
}

虽然personally I advise to use Observable<RealmResults<T>> because it is more reliable.

  

3.)不确定你的意思。没有@component appModule.class,Service Component无法正常工作,但应该是我的理解。

甚至不应 <{1}}。只需ServiceComponent