Skip navigation links
A B C G H P R S T 

A

accept(T) - Method in class com.jakewharton.rxrelay2.BehaviorRelay
 
accept(T) - Method in class com.jakewharton.rxrelay2.PublishRelay
 
accept(T) - Method in class com.jakewharton.rxrelay2.Relay
accept(T) - Method in class com.jakewharton.rxrelay2.ReplayRelay
 

B

BehaviorRelay<T> - Class in com.jakewharton.rxrelay2
Relay that emits the most recent item it has observed and all subsequent observed items to each subscribed Observer.

C

com.jakewharton.rxrelay2 - package com.jakewharton.rxrelay2
 
create() - Static method in class com.jakewharton.rxrelay2.BehaviorRelay
Creates a BehaviorRelay without a default item.
create() - Static method in class com.jakewharton.rxrelay2.PublishRelay
Constructs a PublishRelay.
create() - Static method in class com.jakewharton.rxrelay2.ReplayRelay
Creates an unbounded replay relay.
create(int) - Static method in class com.jakewharton.rxrelay2.ReplayRelay
Creates an unbounded replay relay with the specified initial buffer capacity.
createDefault(T) - Static method in class com.jakewharton.rxrelay2.BehaviorRelay
Creates a BehaviorRelay that emits the last item it observed and all subsequent items to each Observer that subscribes to it.
createWithSize(int) - Static method in class com.jakewharton.rxrelay2.ReplayRelay
Creates a size-bounded replay relay.
createWithTime(long, TimeUnit, Scheduler) - Static method in class com.jakewharton.rxrelay2.ReplayRelay
Creates a time-bounded replay relay.
createWithTimeAndSize(long, TimeUnit, Scheduler, int) - Static method in class com.jakewharton.rxrelay2.ReplayRelay
Creates a time- and size-bounded replay subject.

G

getValue() - Method in class com.jakewharton.rxrelay2.BehaviorRelay
Returns a single value the Relay currently has or null if no such value exists.
getValue() - Method in class com.jakewharton.rxrelay2.ReplayRelay
Returns a single value the Relay currently has or null if no such value exists.
getValues() - Method in class com.jakewharton.rxrelay2.BehaviorRelay
Returns an Object array containing snapshot all values of the Relay.
getValues(T[]) - Method in class com.jakewharton.rxrelay2.BehaviorRelay
Returns a typed array containing a snapshot of all values of the Relay.
getValues() - Method in class com.jakewharton.rxrelay2.ReplayRelay
Returns an Object array containing snapshot all values of the Relay.
getValues(T[]) - Method in class com.jakewharton.rxrelay2.ReplayRelay
Returns a typed array containing a snapshot of all values of the Relay.

H

hasObservers() - Method in class com.jakewharton.rxrelay2.BehaviorRelay
 
hasObservers() - Method in class com.jakewharton.rxrelay2.PublishRelay
 
hasObservers() - Method in class com.jakewharton.rxrelay2.Relay
Returns true if the subject has any Observers.
hasObservers() - Method in class com.jakewharton.rxrelay2.ReplayRelay
 
hasValue() - Method in class com.jakewharton.rxrelay2.BehaviorRelay
Returns true if the subject has any value.
hasValue() - Method in class com.jakewharton.rxrelay2.ReplayRelay
Returns true if the relay has any value.

P

PublishRelay<T> - Class in com.jakewharton.rxrelay2
Relay that, once an Observer has subscribed, emits all subsequently observed items to the subscriber.

R

Relay<T> - Class in com.jakewharton.rxrelay2
Represents a Consumer and an Observable at the same time, allowing multicasting events from a single source to multiple child Observers.
Relay() - Constructor for class com.jakewharton.rxrelay2.Relay
 
ReplayRelay<T> - Class in com.jakewharton.rxrelay2
Replays events to Observers.

S

subscribeActual(Observer<? super T>) - Method in class com.jakewharton.rxrelay2.BehaviorRelay
 
subscribeActual(Observer<? super T>) - Method in class com.jakewharton.rxrelay2.PublishRelay
 
subscribeActual(Observer<? super T>) - Method in class com.jakewharton.rxrelay2.ReplayRelay
 

T

toSerialized() - Method in class com.jakewharton.rxrelay2.Relay
Wraps this Relay and serializes the calls to Relay.accept(T), making it thread-safe.
A B C G H P R S T 
Skip navigation links

Copyright © 2015-2016. All Rights Reserved.