We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DBFlow Version: 5.0.0-alpha1
Bug or Feature Request: Question
Description:
How to use DBFlow transaction for RXJava observer so that the transaction is for whole stream of items proceeded by the observer? My attempt is:
new Observer<Item>() { @Override public void onSubscribe(@NonNull Disposable d) { FlowManager.getDatabase(AppDatabase.class).beginTransaction(); } @Override public void onNext(@NonNull Item item) { FlowManager.getModelAdapter(Item.class).save(item, FlowManager.getDatabase(AppDatabase.class)); } @Override public void onError(@NonNull Throwable error) { } @Override public void onComplete() { FlowManager.getDatabase(AppDatabase.class).endTransaction(); } };
But beginTransaction() blocks processing of items.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
DBFlow Version: 5.0.0-alpha1
Bug or Feature Request: Question
Description:
How to use DBFlow transaction for RXJava observer so that the transaction is for whole stream of items proceeded by the observer? My attempt is:
But beginTransaction() blocks processing of items.
The text was updated successfully, but these errors were encountered: