本文介紹了通過(guò)使Singleton&;的getInstance()方法返回一個(gè)可觀察的&;lt;來(lái)使其成為異步方法是個(gè)好主意嗎?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我有一個(gè)單例,它需要幾秒鐘來(lái)實(shí)例化。它會(huì)使用戶界面凍結(jié)。因此,我計(jì)劃使getInstance()
方法成為異步方法。編寫(xiě)以下代碼是常見(jiàn)做法嗎?
/*
* The singleton class
*/
public class Singleton {
private static volatile Singleton instance;
public static Observable<Singleton> getInstance(Context context) {
return Observable.fromCallable(() -> {
synchronized (Singleton.class) {
if (instance == null)
instance = new Singleton(context.getApplicationContext());
}
return instance;
});
}
private Singleton(Context context) {
// long running process
}
// ...
}
/*
* The UI class
*/
public class UI extends Activity {
private Singleton singleton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Singleton.getInstance(this)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(result -> {
UI.this.singleton = result
})
}
public void onButtonClick(View v) {
if (singleton != null)
singleton.someMethod();
}
}
如果不是,為什么不是,什么是更好的解決方案?
推薦答案
您想要的是緩存從可調(diào)用對(duì)象返回的值,以便下次調(diào)用Subscribe時(shí)不想再次執(zhí)行可調(diào)用對(duì)象。為此,
使用cache運(yùn)算符。
Single<Integer> cachedValue = Single.fromCallable(() -> {
Thread.sleep(3000);
return 5;
}).cache();
cachedValue.subscribe(e -> System.out.println(System.currentTimeMillis() + ": " + e));
cachedValue.subscribe(e -> System.out.println(System.currentTimeMillis() + ": " + e));
您會(huì)注意到第二個(gè)調(diào)用的時(shí)間與第一個(gè)調(diào)用的時(shí)間太接近。至少<;3000毫秒
這篇關(guān)于通過(guò)使Singleton&;的getInstance()方法返回一個(gè)可觀察的&;lt;來(lái)使其成為異步方法是個(gè)好主意嗎?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,