Package io.vertx.mutiny.core.streams
Interface StreamBase
-
- All Known Subinterfaces:
ReadStream<T>,WebSocketBase,WriteStream<T>
- All Known Implementing Classes:
AsyncFile,DatagramSocket,HttpClientRequest,HttpClientResponse,HttpServerFileUpload,HttpServerRequest,HttpServerResponse,JsonParser,MessageConsumer,MessageProducer,NetSocket,RecordParser,ServerWebSocket,TimeoutStream,WebSocket
public interface StreamBaseBase interface for a stream. NOTE: This class has been automatically generated from theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamBaseexceptionHandler(Consumer<Throwable> handler)io.vertx.core.streams.StreamBasegetDelegate()static StreamBasenewInstance(io.vertx.core.streams.StreamBase arg)
-
-
-
Method Detail
-
getDelegate
io.vertx.core.streams.StreamBase getDelegate()
-
exceptionHandler
StreamBase exceptionHandler(Consumer<Throwable> handler)
- Parameters:
handler- the handler- Returns:
- a reference to this, so the API can be used fluently
-
newInstance
static StreamBase newInstance(io.vertx.core.streams.StreamBase arg)
-
-