Java org.springframework.messaging MessageHeaders fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.messaging MessageHeaders fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.messaging MessageHeaders.

The text is from its open source code.

Field

UUIDID_VALUE_NONE
UUID for none.
StringID
The key for the Message ID.
StringTIMESTAMP
The key for the message timestamp.
StringCONTENT_TYPE
The key for the message content type.
StringREPLY_CHANNEL
The key for the message reply channel.
StringERROR_CHANNEL
The key for the message error channel.

Constructor

MessageHeaders(@Nullable Map headers)
Construct a MessageHeaders with the given headers.
MessageHeaders(MessageHeaders original, Set keysToIgnore)
Copy constructor which allows for ignoring certain entries.

Method

booleancontainsKey(Object key)
Set>entrySet()
Tget(Object key, Class type)
Objectget(Object key)
ObjectgetReplyChannel()
LonggetTimestamp()
SetkeySet()
Objectput(String key, Object value)
Since MessageHeaders are immutable, the call to this method will result in UnsupportedOperationException .
intsize()