Package com.mongodb.internal.connection
Class ResponseBuffers
- java.lang.Object
-
- com.mongodb.internal.connection.ResponseBuffers
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
@Deprecated(since="2021-05-27") public class ResponseBuffers extends java.lang.Object implements java.io.Closeable
Deprecated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.ByteBuf
getBodyByteBuffer()
Deprecated.Returns a read-only buffer containing the response body.ReplyHeader
getReplyHeader()
Deprecated.Gets the reply header.void
reset()
Deprecated.
-
-
-
Method Detail
-
getReplyHeader
public ReplyHeader getReplyHeader()
Deprecated.Gets the reply header.- Returns:
- the reply header
-
getBodyByteBuffer
public ByteBuf getBodyByteBuffer()
Deprecated.Returns a read-only buffer containing the response body. Care should be taken to not use the returned buffer after this instance has been closed.- Returns:
- a read-only buffer containing the response body
-
reset
public void reset()
Deprecated.
-
close
public void close()
Deprecated.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
-