Searched defs:flowable (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DQueryTransactionTest.java142 public void flowable() { method in class:QueryTransactionTest
143 Flowable<List<Entity1>> flowable = mDao.flowable();
144 TestSubscriber<List<Entity1>> subscriber = observe(flowable);
264 private <T> TestSubscriber<T> observe(final Flowable<T> flowable) { argument
266 flowable.observeOn(Schedulers.from(ArchTaskExecutor.getMainThreadExecutor()))
348 Flowable<List<Entity1>> flowable(); method in interface:QueryTransactionTest.Entity1Dao
377 Flowable<List<Entity1>> flowable(); method in interface:QueryTransactionTest.EntityDao
415 Flowable<List<Entity1>> flowable(); method in interface:QueryTransactionTest.TransactionDao

Completed in 30 milliseconds