You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# RxJava Releases #
2
2
3
+
### Version 0.8.0 ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxjava%22%20AND%20v%3A%220.8.0%22)) ###
4
+
5
+
This is a breaking (non-backwards compatible) release that updates the Scheduler implementation released in 0.7.0.
6
+
7
+
See See https://github.com/Netflix/RxJava/issues/19 for background, discussion and status of Schedulers.
8
+
9
+
It is believed that the public signatures of Scheduler and related objects is now stabilized but ongoing feedback and review by the community could still result in changes.
10
+
11
+
*[Issue 19](https://github.com/Netflix/RxJava/issues/19) Schedulers improvements, changes and additions
* Why is this an abstract class instead of an interface?
37
+
* <p>
38
+
* <ol>
39
+
* <li>Java doesn't support extension methods and there are many overload methods needing default implementations.</li>
40
+
* <li>Virtual extension methods aren't available until Java8 which RxJava will not set as a minimum target for a long time.</li>
41
+
* <li>If only an interface were used Scheduler implementations would then need to extend from an AbstractScheduler pair that gives all of the functionality unless they intend on copy/pasting the
42
+
* functionality.</li>
43
+
* <li>Without virtual extension methods even additive changes are breaking and thus severely impede library maintenance.</li>
44
+
* </ol>
25
45
*/
26
-
publicinterfaceScheduler {
46
+
publicabstractclassScheduler {
47
+
48
+
/**
49
+
* Schedules a cancelable action to be executed.
50
+
*
51
+
* @param state
52
+
* State to pass into the action.
53
+
* @param action
54
+
* Action to schedule.
55
+
* @return a subscription to be able to unsubscribe from action.
0 commit comments