Package io.vertx.rxjava3.ext.unit.report
Class TestSuiteReport
- java.lang.Object
-
- io.vertx.rxjava3.ext.unit.report.TestSuiteReport
-
- All Implemented Interfaces:
ReadStream<TestCaseReport>
,StreamBase
public class TestSuiteReport extends Object implements ReadStream<TestCaseReport>
The test suite reports is basically a stream of events reporting the test suite execution.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<TestSuiteReport>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description TestSuiteReport(TestSuiteReport delegate)
TestSuiteReport(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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 specifiedamount
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 theReadStream
, it sets the buffer infetch
mode and clears the actual demand.Pipe<TestCaseReport>
pipe()
Pause this stream and return a to transfer the elements of this stream to a destination .Completable
pipeTo(WriteStream<TestCaseReport> dst)
Pipe thisReadStream
to theWriteStream
.TestSuiteReport
resume()
Resume reading, and sets the buffer inflowing
mode.Completable
rxPipeTo(WriteStream<TestCaseReport> dst)
Pipe thisReadStream
to theWriteStream
.Flowable<TestCaseReport>
toFlowable()
Observable<TestCaseReport>
toObservable()
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<TestSuiteReport> __TYPE_ARG
-
-
Constructor Detail
-
TestSuiteReport
public TestSuiteReport(TestSuiteReport delegate)
-
TestSuiteReport
public TestSuiteReport(Object delegate)
-
-
Method Detail
-
getDelegate
public TestSuiteReport getDelegate()
- Specified by:
getDelegate
in interfaceReadStream<TestCaseReport>
- Specified by:
getDelegate
in interfaceStreamBase
-
toObservable
public Observable<TestCaseReport> toObservable()
- Specified by:
toObservable
in interfaceReadStream<TestCaseReport>
-
toFlowable
public Flowable<TestCaseReport> toFlowable()
- Specified by:
toFlowable
in interfaceReadStream<TestCaseReport>
-
fetch
public ReadStream<TestCaseReport> fetch(long amount)
Fetch the specifiedamount
of elements. If theReadStream
has been paused, reading will recommence with the specifiedamount
of items, otherwise the specifiedamount
will be added to the current stream demand.- Specified by:
fetch
in interfaceReadStream<TestCaseReport>
- Parameters:
amount
-- Returns:
- a reference to this, so the API can be used fluently
-
pipe
public Pipe<TestCaseReport> pipe()
Pause this stream and return a to transfer the elements of this stream to a destination . The stream will be resumed when the pipe will be wired to aWriteStream
.- Specified by:
pipe
in interfaceReadStream<TestCaseReport>
- Returns:
- a pipe
-
pipeTo
public Completable pipeTo(WriteStream<TestCaseReport> dst)
Pipe thisReadStream
to theWriteStream
.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
pipeTo
in interfaceReadStream<TestCaseReport>
- Parameters:
dst
- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
rxPipeTo
public Completable rxPipeTo(WriteStream<TestCaseReport> dst)
Pipe thisReadStream
to theWriteStream
.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
- Specified by:
rxPipeTo
in interfaceReadStream<TestCaseReport>
- Parameters:
dst
- the destination write stream- Returns:
- a future notified when the write stream will be ended with the outcome
-
name
public String name()
- Returns:
- the test suite name
-
exceptionHandler
public 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.- Specified by:
exceptionHandler
in interfaceReadStream<TestCaseReport>
- Specified by:
exceptionHandler
in interfaceStreamBase
- Parameters:
handler
- the exception handler- Returns:
- a reference to this, so the API can be used fluently
-
handler
public TestSuiteReport handler(Handler<TestCaseReport> handler)
Description copied from interface:ReadStream
Set a data handler. As data is read, the handler will be called with the data.- Specified by:
handler
in interfaceReadStream<TestCaseReport>
- Returns:
- a reference to this, so the API can be used fluently
-
pause
public TestSuiteReport pause()
Description copied from interface:ReadStream
Pause theReadStream
, it sets the buffer infetch
mode and clears the actual demand.While it's paused, no data will be sent to the data
handler
.- Specified by:
pause
in interfaceReadStream<TestCaseReport>
- Returns:
- a reference to this, so the API can be used fluently
-
resume
public TestSuiteReport resume()
Description copied from interface:ReadStream
Resume reading, and sets the buffer inflowing
mode. If theReadStream
has been paused, reading will recommence on it.- Specified by:
resume
in interfaceReadStream<TestCaseReport>
- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
public TestSuiteReport endHandler(Handler<Void> endHandler)
Description copied from interface:ReadStream
Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.- Specified by:
endHandler
in interfaceReadStream<TestCaseReport>
- Returns:
- a reference to this, so the API can be used fluently
-
newInstance
public static TestSuiteReport newInstance(TestSuiteReport arg)
-
-