rx.subjects.PublishSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-core Show documentation
Show all versions of rxjava-core Show documentation
rxjava-core developed by Netflix
The newest version!
/**
* 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.subjects;
import rx.Observer;
import rx.functions.Action1;
import rx.internal.operators.NotificationLite;
import rx.subjects.SubjectSubscriptionManager.SubjectObserver;
/**
* Subject that, once an {@link Observer} has subscribed, emits all subsequently observed items to the
* subscriber.
*
*
*
* Example usage:
*
*
{@code
PublishSubject
*
* @param
* the type of items observed and emitted by the Subject
*/
public final class PublishSubject extends Subject {
/**
* Creates and returns a new {@code PublishSubject}.
*
* @param the value type
* @return the new {@code PublishSubject}
*/
public static PublishSubject create() {
final SubjectSubscriptionManager state = new SubjectSubscriptionManager();
state.onTerminated = new Action1>() {
@Override
public void call(SubjectObserver o) {
o.emitFirst(state.get(), state.nl);
}
};
return new PublishSubject(state, state);
}
final SubjectSubscriptionManager state;
private final NotificationLite nl = NotificationLite.instance();
protected PublishSubject(OnSubscribe onSubscribe, SubjectSubscriptionManager state) {
super(onSubscribe);
this.state = state;
}
@Override
public void onCompleted() {
if (state.active) {
Object n = nl.completed();
for (SubjectObserver bo : state.terminate(n)) {
bo.emitNext(n, state.nl);
}
}
}
@Override
public void onError(final Throwable e) {
if (state.active) {
Object n = nl.error(e);
for (SubjectObserver bo : state.terminate(n)) {
bo.emitNext(n, state.nl);
}
}
}
@Override
public void onNext(T v) {
for (SubjectObserver bo : state.observers()) {
bo.onNext(v);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy