OkHttp を使用してファイルをダウンロードし、Okio でディスクに書き込もうとしています。また、このプロセス用に rx オブザーバブルを作成しました。動作していますが、以前使用していたもの (Koush の Ion ライブラリ) よりも著しく遅いです。
オブザーバブルを作成する方法は次のとおりです。
public Observable<FilesWrapper> download(List<Thing> things) {
return Observable.from(things)
.map(thing -> {
File file = new File(getExternalCacheDir() + File.separator + thing.getName());
if (!file.exists()) {
Request request = new Request.Builder().url(thing.getUrl()).build();
Response response;
try {
response = client.newCall(request).execute();
if (!response.isSuccessful()) new IOException();
else {
BufferedSink sink = Okio.buffer(Okio.sink(file));
sink.writeAll(response.body().source());
sink.close();
}
} catch (IOException e) {
new IOException();
}
}
return file;
})
.toList()
.map(files -> new FilesWrapper(files);
}
速度が遅い原因を知っている人はいますか? または、演算子の使い方が間違っているのでしょうか?