Skip to content

Commit

Permalink
Updating README
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Yuichi Okimoto committed Dec 14, 2016
1 parent 2073aba commit a539c83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension-rxjava/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ PurchaseType purchaseType = PurchaseType.IN_APP; // PurchaseType.SUBSCRIPTIONS f
mBillingProcessor.getInventory(purchaseType)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Action1<PurchaseList>() {
.subscribe(new Action1<Purchases>() {
@Override
public void call(Purchases purchases) {
// Do your stuff with the list of purchases
Expand All @@ -231,7 +231,7 @@ itemIds.add("item_id_2");
mBillingProcessor.getItemDetails(purchaseType, itemIds)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Action1<ItemDetailList>() {
.subscribe(new Action1<ItemDetails>() {
@Override
public void call(ItemDetails itemDetails) {
// Do your stuff with the list of item details
Expand Down

0 comments on commit a539c83

Please sign in to comment.