Class Message
- java.lang.Object
-
- software.amazon.awssdk.crt.CrtResource
-
- software.amazon.awssdk.crt.eventstream.Message
-
- All Implemented Interfaces:
AutoCloseable
public class Message extends CrtResource
Wrapper around an instance of aws-event-stream-message. It's auto closable, so be sure to call close when finished with the object.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.awssdk.crt.CrtResource
CrtResource.ResourceInstance
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteBuffer
getMessageBuffer()
Get the binary format of this message (i.e.-
Methods inherited from class software.amazon.awssdk.crt.CrtResource
addRef, addReferenceTo, close, collectNativeResource, collectNativeResources, decRef, getNativeHandle, getResourceLogDescription, isNull, logNativeResources, logNativeResources, removeReferenceTo, setDescription, waitForNoResources
-
-
-
-
Method Detail
-
getMessageBuffer
public ByteBuffer getMessageBuffer()
Get the binary format of this message (i.e. for sending across the wire manually)- Returns:
- ByteBuffer wrapping the underlying message data. This buffer is only valid as long as the message itself is valid.
-
-