Created
July 22, 2016 14:16
-
-
Save Den-Rimus/1b052a2a8fde916ab0bdb88ce0f6f079 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#here comes Observable<List<DtlMerchant>># | |
.flatMap(Observable::from) | |
.filter(merchant -> merchant.getPartnerStatus() == PartnerStatus.UNKNOWN) | |
.filter(merchant -> merchant.getType() == MerchantType.UNKNOWN) | |
.toList() | |
#here I need the same Observable<List<DtlMerchant>># |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment