Skip navigation links
A B C D H I M N O T 

A

assertDoesNotHaveEvent(Matcher<Notification>) - Method in class com.rxc.TestSubscriber
Asserts that this Subscriber has not received an event matching the given matcher
assertHasEvent(Matcher<Notification>) - Method in class com.rxc.TestSubscriber
Asserts that this Subscriber has received an event matching the given matcher
assertNextEvent(Matcher<Notification>) - Method in class com.rxc.TestSubscriber.AssertionChain
Asserts that the next event matches the given matcher
assertNoRemainingEvents() - Method in class com.rxc.TestSubscriber.AssertionChain
Asserts that all received events have been checked or skipped by this AssertionChain
assertWellBehaved() - Method in class com.rxc.TestSubscriber
 
awaitEvent(Matcher<Notification>, int, long, TimeUnit) - Method in class com.rxc.TestSubscriber
Holds the current thread until the subscriber has received a certain number of events that match the given matcher
awaitEvent(Matcher<Notification>, int) - Method in class com.rxc.TestSubscriber
Holds the current thread until the subscriber has received a certain number of events that match the given matcher
awaitEvent(Matcher<Notification>, long, TimeUnit) - Method in class com.rxc.TestSubscriber
Holds the current thread until the subscriber has received an events that match the given matcher
awaitEvent(Matcher<Notification>) - Method in class com.rxc.TestSubscriber
Holds the current thread until the subscriber has received an events that match the given matcher

B

beginAssertionChain() - Method in class com.rxc.TestSubscriber
Begins a TestSubscriber.AssertionChain that will make assertions against all of the events that have been recorded

C

com.rxc - package com.rxc
 
com.rxc.matchers - package com.rxc.matchers
 

D

describeMismatchSafely(Notification, Description) - Method in class com.rxc.matchers.OnCompletedMatcher
 
describeMismatchSafely(Notification, Description) - Method in class com.rxc.matchers.OnErrorMatcher
 
describeMismatchSafely(Notification, Description) - Method in class com.rxc.matchers.OnNextMatcher
 
describeNotification(Notification, Description) - Static method in class com.rxc.NotificationDescriber
Describes a Notification to a given Description
describeTo(Description) - Method in class com.rxc.matchers.OnCompletedMatcher
 
describeTo(Description) - Method in class com.rxc.matchers.OnErrorMatcher
 
describeTo(Description) - Method in class com.rxc.matchers.OnNextMatcher
 

H

hasCauseThat(Matcher<Throwable>) - Static method in class com.rxc.matchers.ThrowableMatchers
A Matcher that matches a Throwable with a cause that matches a given matcher
hasMessageThat(Matcher<String>) - Static method in class com.rxc.matchers.ThrowableMatchers
A Matcher that matches a Throwable with a message that matches a given matcher

I

ignoreNextEvent() - Method in class com.rxc.TestSubscriber.AssertionChain
Skips the next event in the recorded event chain
ignoreNextEvents(int) - Method in class com.rxc.TestSubscriber.AssertionChain
Skips a given amount of events in the recorded event chain
ignoreUntilEvent(Matcher<Notification>, int) - Method in class com.rxc.TestSubscriber.AssertionChain
Walks through the event chain skipping events until the given number of events have been reached that match the given matcher
ignoreUntilEvent(Matcher<Notification>) - Method in class com.rxc.TestSubscriber.AssertionChain
Walks through the event chain skipping events until an event has been reached that matches the given matcher
isCompletion() - Static method in class com.rxc.matchers.NotificationMatchers
A matcher that matches onCompleted Notifications
isError(Class<? extends Throwable>) - Static method in class com.rxc.matchers.NotificationMatchers
A matcher that matches OnError notifications with a Throwable that is an instance of the given Class
isErrorThat(Matcher<? extends Throwable>) - Static method in class com.rxc.matchers.NotificationMatchers
A matcher that matches OnError notifications with a Throwable matching the given matcher
isValue(Object) - Static method in class com.rxc.matchers.NotificationMatchers
A matcher that matches OnNext notifications with a value equal to the given value
isValueThat(Matcher) - Static method in class com.rxc.matchers.NotificationMatchers
A matcher that matches OnNext notifications with a value matching the given matcher

M

matchesSafely(Notification) - Method in class com.rxc.matchers.OnCompletedMatcher
 
matchesSafely(Notification) - Method in class com.rxc.matchers.OnErrorMatcher
 
matchesSafely(Notification) - Method in class com.rxc.matchers.OnNextMatcher
 

N

NotificationDescriber - Class in com.rxc
 
NotificationDescriber() - Constructor for class com.rxc.NotificationDescriber
 
NotificationMatchers - Class in com.rxc.matchers
 
NotificationMatchers() - Constructor for class com.rxc.matchers.NotificationMatchers
 

O

onCompleted() - Method in class com.rxc.TestSubscriber
 
OnCompletedMatcher - Class in com.rxc.matchers
A matcher that matches onCompleted Notifications
OnCompletedMatcher() - Constructor for class com.rxc.matchers.OnCompletedMatcher
 
onError(Throwable) - Method in class com.rxc.TestSubscriber
 
OnErrorMatcher - Class in com.rxc.matchers
A matcher that matches onError Notifications with an error matching the given matcher
OnErrorMatcher(Matcher<? extends Throwable>) - Constructor for class com.rxc.matchers.OnErrorMatcher
Constructs the matcher
onNext(T) - Method in class com.rxc.TestSubscriber
 
OnNextMatcher - Class in com.rxc.matchers
A matcher that matches OnNext notifications with a value matching the given matcher
OnNextMatcher(Matcher) - Constructor for class com.rxc.matchers.OnNextMatcher
Constructs the matcher

T

TestSubscriber<T> - Class in com.rxc
A Subscriber that records all events so that assertions can be made against them for testing purposes TestSubscriber is entirely thread safe and makes no assumptions about the Observable contract
TestSubscriber() - Constructor for class com.rxc.TestSubscriber
 
TestSubscriber.AssertionChain - Class in com.rxc
A fluent class used to walk the chain of events received by a TestSubscriber and make assertions against each event in the order received
ThrowableMatchers - Class in com.rxc.matchers
 
ThrowableMatchers() - Constructor for class com.rxc.matchers.ThrowableMatchers
 
A B C D H I M N O T 
Skip navigation links