Skip to content

Commit

Permalink
Upgrade to RxJava 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Mar 29, 2017
1 parent 6e335f8 commit dcb27a7
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 35 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RxJava 2.x implementation of extra sources, operators and components and ports o

```
dependencies {
compile "com.github.akarnokd:rxjava2-extensions:0.16.2"
compile "com.github.akarnokd:rxjava2-extensions:0.16.3"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {
signature 'org.codehaus.mojo.signature:java16:1.1@signature'

compile "org.reactivestreams:reactive-streams:1.0.0"
compile "io.reactivex.rxjava2:rxjava:2.0.7"
compile "io.reactivex.rxjava2:rxjava:2.0.8"

testCompile group: 'junit', name: 'junit', version: '4.12'

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.16.2
version=0.16.3
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import io.reactivex.FlowableSubscriber;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.parallel.ParallelFlowable;
import io.reactivex.parallel.ParallelTransformer;

/**
* Sums numbers as longs on each parallel rail, or empty if the rail doesn't produce any data.
Expand All @@ -35,7 +36,7 @@ final class ParallelSumDouble<T extends Number> extends ParallelFlowable<Double>
}

@Override
public ParallelFlowable<Double> apply(ParallelFlowable<T> t) throws Exception {
public ParallelFlowable<Double> apply(ParallelFlowable<T> t) {
return new ParallelSumDouble<T>(t);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import io.reactivex.FlowableSubscriber;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.parallel.ParallelFlowable;
import io.reactivex.parallel.ParallelTransformer;

/**
* Sums numbers as integers on each parallel rail, or empty if the rail doesn't produce any data.
Expand All @@ -35,7 +36,7 @@ final class ParallelSumInteger<T extends Number> extends ParallelFlowable<Intege
}

@Override
public ParallelFlowable<Integer> apply(ParallelFlowable<T> t) throws Exception {
public ParallelFlowable<Integer> apply(ParallelFlowable<T> t) {
return new ParallelSumInteger<T>(t);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import io.reactivex.FlowableSubscriber;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.parallel.ParallelFlowable;
import io.reactivex.parallel.ParallelTransformer;

/**
* Sums numbers as longs on each parallel rail, or empty if the rail doesn't produce any data.
Expand All @@ -35,7 +36,7 @@ final class ParallelSumLong<T extends Number> extends ParallelFlowable<Long> imp
}

@Override
public ParallelFlowable<Long> apply(ParallelFlowable<T> t) throws Exception {
public ParallelFlowable<Long> apply(ParallelFlowable<T> t) {
return new ParallelSumLong<T>(t);
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package hu.akarnokd.rxjava2.parallel;

import io.reactivex.parallel.ParallelTransformer;

/**
* Transformers for RxJava 2 ParallelFlowable sequences.
* @since 0.16.3
Expand Down

0 comments on commit dcb27a7

Please sign in to comment.