forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65c4a85
commit 85debff
Showing
4 changed files
with
101 additions
and
85 deletions.
There are no files selected for viewing
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
80 changes: 0 additions & 80 deletions
80
rxjava-core/src/main/java/rx/operators/OperationRepeat.java
This file was deleted.
Oops, something went wrong.
87 changes: 87 additions & 0 deletions
87
rxjava-core/src/main/java/rx/operators/OperatorRepeat.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/** | ||
* Copyright 2014 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.operators; | ||
|
||
import rx.Observable; | ||
import rx.Scheduler; | ||
import rx.Scheduler.Inner; | ||
import rx.Subscriber; | ||
import rx.schedulers.Schedulers; | ||
import rx.util.functions.Action1; | ||
|
||
public class OperatorRepeat<T> implements Operator<T, Observable<T>> { | ||
|
||
private final Scheduler scheduler; | ||
|
||
public OperatorRepeat(Scheduler scheduler) { | ||
this.scheduler = scheduler; | ||
|
||
} | ||
|
||
public OperatorRepeat() { | ||
this(Schedulers.trampoline()); | ||
} | ||
|
||
@Override | ||
public Subscriber<? super Observable<T>> call(final Subscriber<? super T> child) { | ||
return new Subscriber<Observable<T>>(child) { | ||
|
||
@Override | ||
public void onCompleted() { | ||
// ignore as we will keep repeating | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
child.onError(e); | ||
} | ||
|
||
@Override | ||
public void onNext(final Observable<T> t) { | ||
scheduler.schedule(new Action1<Inner>() { | ||
|
||
final Action1<Inner> self = this; | ||
|
||
@Override | ||
public void call(final Inner inner) { | ||
|
||
t.subscribe(new Subscriber<T>(child) { | ||
|
||
@Override | ||
public void onCompleted() { | ||
inner.schedule(self); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
child.onError(e); | ||
} | ||
|
||
@Override | ||
public void onNext(T t) { | ||
child.onNext(t); | ||
} | ||
|
||
}); | ||
} | ||
|
||
}); | ||
} | ||
|
||
}; | ||
} | ||
} |
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