Package io.reactivex.rxjava3.exceptions
Class CompositeException.WrappedPrintStream
- java.lang.Object
-
- io.reactivex.rxjava3.exceptions.CompositeException.PrintStreamOrWriter
-
- io.reactivex.rxjava3.exceptions.CompositeException.WrappedPrintStream
-
- Enclosing class:
- CompositeException
static final class CompositeException.WrappedPrintStream extends CompositeException.PrintStreamOrWriter
Same abstraction and implementation as in JDK to allow PrintStream and PrintWriter to share implementation.
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.PrintStream
printStream
-
Constructor Summary
Constructors Constructor Description WrappedPrintStream(java.io.PrintStream printStream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) CompositeException.WrappedPrintStream
append(java.lang.Object o)
Prints the object's string representation via the underlying PrintStream or PrintWriter.
-
-
-
Method Detail
-
append
CompositeException.WrappedPrintStream append(java.lang.Object o)
Description copied from class:CompositeException.PrintStreamOrWriter
Prints the object's string representation via the underlying PrintStream or PrintWriter.- Specified by:
append
in classCompositeException.PrintStreamOrWriter
- Parameters:
o
- the object to print- Returns:
- this
-
-