public class TestSuiteReport extends Object implements ReadStream<TestCaseReport>
original non RX-ified interface using Vert.x codegen.| Modifier and Type | Field and Description |
|---|---|
static <any> |
__TYPE_ARG |
| Constructor and Description |
|---|
TestSuiteReport(TestSuiteReport delegate) |
| Modifier and Type | Method and Description |
|---|---|
TestSuiteReport |
endHandler(Handler<Void> endHandler)
Set an end handler.
|
boolean |
equals(Object o) |
TestSuiteReport |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler, the exception handler reports the test suite errors, it can be called mulitple
times before the test ends.
|
ReadStream<TestCaseReport> |
fetch(long amount)
Fetch the specified
amount of elements. |
TestSuiteReport |
getDelegate() |
TestSuiteReport |
handler(Handler<TestCaseReport> handler)
Set a data handler.
|
int |
hashCode() |
String |
name() |
static TestSuiteReport |
newInstance(TestSuiteReport arg) |
TestSuiteReport |
pause()
Pause the
ReadStream, it sets the buffer in fetch mode and clears the actual demand. |
TestSuiteReport |
resume()
Resume reading, and sets the buffer in
flowing mode. |
Flowable<TestCaseReport> |
toFlowable() |
Observable<TestCaseReport> |
toObservable() |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitnewInstance, newInstancenewInstancepublic TestSuiteReport(TestSuiteReport delegate)
public TestSuiteReport getDelegate()
getDelegate in interface ReadStream<TestCaseReport>getDelegate in interface StreamBasepublic Observable<TestCaseReport> toObservable()
toObservable in interface ReadStream<TestCaseReport>public Flowable<TestCaseReport> toFlowable()
toFlowable in interface ReadStream<TestCaseReport>public ReadStream<TestCaseReport> fetch(long amount)
amount of elements. If the ReadStream has been paused, reading will
recommence with the specified amount of items, otherwise the specified amount will
be added to the current stream demand.fetch in interface ReadStream<TestCaseReport>amount - public String name()
public TestSuiteReport exceptionHandler(Handler<Throwable> handler)
exceptionHandler in interface ReadStream<TestCaseReport>exceptionHandler in interface StreamBasehandler - the exception handlerpublic TestSuiteReport handler(Handler<TestCaseReport> handler)
ReadStreamhandler in interface ReadStream<TestCaseReport>public TestSuiteReport pause()
ReadStreamReadStream, it sets the buffer in fetch mode and clears the actual demand.
While it's paused, no data will be sent to the data handler.
pause in interface ReadStream<TestCaseReport>public TestSuiteReport resume()
ReadStreamflowing mode.
If the ReadStream has been paused, reading will recommence on it.resume in interface ReadStream<TestCaseReport>public TestSuiteReport endHandler(Handler<Void> endHandler)
ReadStreamendHandler in interface ReadStream<TestCaseReport>public static TestSuiteReport newInstance(TestSuiteReport arg)
Copyright © 2018 Eclipse. All rights reserved.