Class ServletResteasyReactiveInputStream
- java.lang.Object
-
- java.io.InputStream
-
- io.quarkus.resteasy.reactive.server.servlet.runtime.ServletResteasyReactiveInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class ServletResteasyReactiveInputStream extends InputStream
-
-
Field Summary
Fields Modifier and Type Field Description (package private) InputStreamdelegate(package private) ByteBufferexistingData(package private) jakarta.servlet.http.HttpServletRequestrequest
-
Constructor Summary
Constructors Constructor Description ServletResteasyReactiveInputStream(ByteBuffer existingData, jakarta.servlet.http.HttpServletRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intread()intread(byte[] b, int off, int len)-
Methods inherited from class java.io.InputStream
available, close, mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Field Detail
-
existingData
ByteBuffer existingData
-
request
jakarta.servlet.http.HttpServletRequest request
-
delegate
InputStream delegate
-
-
Constructor Detail
-
ServletResteasyReactiveInputStream
public ServletResteasyReactiveInputStream(ByteBuffer existingData, jakarta.servlet.http.HttpServletRequest request)
-
-
Method Detail
-
read
public int read() throws IOException- Specified by:
readin classInputStream- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException- Overrides:
readin classInputStream- Throws:
IOException
-
-