forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScheduler.java
More file actions
192 lines (166 loc) · 6.68 KB
/
Scheduler.java
File metadata and controls
192 lines (166 loc) · 6.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/**
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rx;
import java.util.concurrent.TimeUnit;
import rx.functions.Action1;
/**
* Represents an object that schedules units of work.
* <p>
* The methods left to implement are:
* <ul>
* <li>{@code <T> Subscription schedule(T state, Func2<Scheduler, T, Subscription> action, long delayTime, TimeUnit unit)}</li>
* <li>{@code <T> Subscription schedule(T state, Func2<Scheduler, T, Subscription> action)}</li>
* </ul>
* <p>
* Why is this an abstract class instead of an interface?
* <p>
* <ol>
* <li>Java doesn't support extension methods and there are many overload methods needing default implementations.</li>
* <li>Virtual extension methods aren't available until Java8 which RxJava will not set as a minimum target for a long time.</li>
* <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
* functionality.</li>
* <li>Without virtual extension methods even additive changes are breaking and thus severely impede library maintenance.</li>
* </ol>
*/
public abstract class Scheduler {
/**
* Schedules an Action on a new Scheduler instance (typically another thread) for execution.
*
* @param action
* Action to schedule.
* @return a subscription to be able to unsubscribe from action.
*/
public abstract Subscription schedule(Action1<Scheduler.Inner> action);
/**
* Schedules an Action on a new Scheduler instance (typically another thread) for execution at some point in the future.
*
* @param action
* @param delayTime
* @param unit
* @return
*/
public abstract Subscription schedule(final Action1<Scheduler.Inner> action, final long delayTime, final TimeUnit unit);
/**
* Schedules a cancelable action to be executed periodically.
* This default implementation schedules recursively and waits for actions to complete (instead of potentially executing
* long-running actions concurrently). Each scheduler that can do periodic scheduling in a better way should override this.
*
* @param state
* State to pass into the action.
* @param action
* The action to execute periodically.
* @param initialDelay
* Time to wait before executing the action for the first time.
* @param period
* The time interval to wait each time in between executing the action.
* @param unit
* The time unit the interval above is given in.
* @return A subscription to be able to unsubscribe from action.
*/
public Subscription schedulePeriodically(final Action1<Scheduler.Inner> action, long initialDelay, long period, TimeUnit unit) {
final long periodInNanos = unit.toNanos(period);
final Action1<Scheduler.Inner> recursiveAction = new Action1<Scheduler.Inner>() {
@Override
public void call(Inner inner) {
if (!inner.isUnsubscribed()) {
long startedAt = now();
action.call(inner);
long timeTakenByActionInNanos = TimeUnit.MILLISECONDS.toNanos(now() - startedAt);
inner.schedule(this, periodInNanos - timeTakenByActionInNanos, TimeUnit.NANOSECONDS);
}
}
};
return schedule(recursiveAction, initialDelay, unit);
}
public final Subscription scheduleRecursive(final Action1<Recurse> action) {
return schedule(new Action1<Inner>() {
@Override
public void call(Inner inner) {
action.call(new Recurse(inner, action));
}
});
}
public static final class Recurse {
private final Action1<Recurse> action;
private final Inner inner;
private Recurse(Inner inner, Action1<Recurse> action) {
this.inner = inner;
this.action = action;
}
/**
* Schedule the current function for execution immediately.
*/
public final void schedule() {
final Recurse self = this;
inner.schedule(new Action1<Inner>() {
@Override
public void call(Inner _inner) {
action.call(self);
}
});
}
/**
* Schedule the current function for execution in the future.
*/
public final void schedule(long delay, TimeUnit unit) {
final Recurse self = this;
inner.schedule(new Action1<Inner>() {
@Override
public void call(Inner _inner) {
action.call(self);
}
}, delay, unit);
}
}
public abstract static class Inner implements Subscription {
/**
* Schedules an action to be executed in delayTime.
*
* @param delayTime
* Time the action is to be delayed before executing.
* @param unit
* Time unit of the delay time.
*/
public abstract void schedule(Action1<Scheduler.Inner> action, long delayTime, TimeUnit unit);
/**
* Schedules a cancelable action to be executed in delayTime.
*
*/
public abstract void schedule(Action1<Scheduler.Inner> action);
/**
* @return the scheduler's notion of current absolute time in milliseconds.
*/
public long now() {
return System.currentTimeMillis();
}
}
/**
* Parallelism available to a Scheduler.
* <p>
* This defaults to {@code Runtime.getRuntime().availableProcessors()} but can be overridden for use cases such as scheduling work on a computer cluster.
*
* @return the scheduler's available degree of parallelism.
*/
public int degreeOfParallelism() {
return Runtime.getRuntime().availableProcessors();
}
/**
* @return the scheduler's notion of current absolute time in milliseconds.
*/
public long now() {
return System.currentTimeMillis();
}
}