Package com.mongodb.connection
Interface Stream
- All Superinterfaces:
BufferProvider
Deprecated.
There is no replacement for this interface.
A full duplex stream of bytes.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Deprecated.Closes the connection.Deprecated.The address that this stream is connected to.boolean
isClosed()
Deprecated.Returns the closed state of the connectionvoid
open()
Deprecated.Open the stream.void
openAsync
(AsyncCompletionHandler<Void> handler) Deprecated.Open the stream asynchronously.read
(int numBytes) Deprecated.Read from the stream, blocking until the requested number of bytes have been read.default ByteBuf
read
(int numBytes, int additionalTimeout) Deprecated.Read from the stream, blocking until the requested number of bytes have been read.void
readAsync
(int numBytes, AsyncCompletionHandler<ByteBuf> handler) Deprecated.Read from the stream, asynchronously.default boolean
Deprecated.Gets whether this implementation supports specifying an additional timeout for read operationsvoid
Deprecated.Write each buffer in the list to the stream in order, blocking until all are completely written.void
writeAsync
(List<ByteBuf> buffers, AsyncCompletionHandler<Void> handler) Deprecated.Write each buffer in the list to the stream in order, asynchronously.Methods inherited from interface com.mongodb.connection.BufferProvider
getBuffer
-
Method Details
-
open
Deprecated.Open the stream.- Throws:
IOException
- if an I/O error occurs
-
openAsync
Deprecated.Open the stream asynchronously.- Parameters:
handler
- the completion handler for opening the stream
-
write
Deprecated.Write each buffer in the list to the stream in order, blocking until all are completely written.- Parameters:
buffers
- the buffers to write. The operation must not release any buffer frombuffers
, unless the operation retains it, and releasing is meant to compensate for that.- Throws:
IOException
- if there are problems writing to the stream
-
read
Deprecated.Read from the stream, blocking until the requested number of bytes have been read.- Parameters:
numBytes
- The number of bytes to read into the returned byte buffer- Returns:
- a byte buffer filled with number of bytes requested
- Throws:
IOException
- if there are problems reading from the stream
-
supportsAdditionalTimeout
default boolean supportsAdditionalTimeout()Deprecated.Gets whether this implementation supports specifying an additional timeout for read operationsThe default is to not support specifying an additional timeout
- Returns:
- true if this implementation supports specifying an additional timeouts for reads operations
- Since:
- 4.1
- See Also:
-
read
Deprecated.Read from the stream, blocking until the requested number of bytes have been read. If supported by the implementation, adds the given additional timeout to the configured timeout for the stream.This method should not be called unless
supportsAdditionalTimeout()
returns true.The default behavior is to throw an
UnsupportedOperationException
- Parameters:
numBytes
- The number of bytes to read into the returned byte bufferadditionalTimeout
- additional timeout in milliseconds to add to the configured timeout- Returns:
- a byte buffer filled with number of bytes requested
- Throws:
IOException
- if there are problems reading from the streamUnsupportedOperationException
- if this implementation does not support additional timeouts- Since:
- 4.1
- See Also:
-
writeAsync
Deprecated.Write each buffer in the list to the stream in order, asynchronously. This method should return immediately, and invoke the given callback on completion. -
readAsync
Deprecated.Read from the stream, asynchronously. This method should return immediately, and invoke the given callback when the number of requested bytes have been read.- Parameters:
numBytes
- the number of byteshandler
- invoked when the read operation has completed
-
getAddress
ServerAddress getAddress()Deprecated.The address that this stream is connected to.- Returns:
- the address
-
close
void close()Deprecated.Closes the connection. -
isClosed
boolean isClosed()Deprecated.Returns the closed state of the connection- Returns:
- true if connection is closed
-