Skip to content

Instantly share code, notes, and snippets.

@yongjhih
Created April 3, 2015 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yongjhih/306711a17eb1d479203a to your computer and use it in GitHub Desktop.
Save yongjhih/306711a17eb1d479203a to your computer and use it in GitHub Desktop.
OperatorFlatList.java
/**
* Copyright 2015 8tory, 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.internal.operators;
import java.util.List;
import rx.Observable.Operator;
import rx.Subscriber;
/**
* Return an {@code Observable} that emits the items emitted by the source {@code Observable}, in a reversed order.
*
* @param <T>
* the type of the items emitted by the source and the resulting {@code Observable}s
*/
public final class OperatorFlatList<T> implements Operator<T, List<T>> {
@Override
public Subscriber<? super List<T>> call(final Subscriber<? super T> o) {
return new Subscriber<List<T>>(o) {
@Override
public void onStart() {
request(Long.MAX_VALUE);
}
@Override
public void onCompleted() {
o.onCompleted();
}
@Override
public void onError(Throwable e) {
o.onError(e);
}
@Override
public void onNext(List<T> value) {
for (T v : value) o.onNext(v);
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment