Package | Description |
---|---|
org.springframework.messaging |
Support for working with messaging APIs and protocols.
|
org.springframework.messaging.support |
Provides implementations of
Message along with
a MessageBuilder and MessageHeaderAccessor for building and working with messages and
message headers, as well as various MessageChannel
implementations and channel interceptor support. |
org.springframework.util |
Miscellaneous utility classes, such as String manipulation utilities,
a Log4J configurer, and a state holder for paged lists of objects.
|
org.springframework.web.socket.adapter |
Classes adapting Spring's WebSocket API to and from WebSocket providers.
|
Modifier and Type | Method and Description |
---|---|
protected static IdGenerator |
MessageHeaders.getIdGenerator() |
Modifier and Type | Method and Description |
---|---|
IdGenerator |
IdTimestampMessageHeaderInitializer.getIdGenerator()
Return the configured
IdGenerator , if any. |
Modifier and Type | Method and Description |
---|---|
void |
IdTimestampMessageHeaderInitializer.setIdGenerator(IdGenerator idGenerator)
Configure the IdGenerator strategy to initialize
MessageHeaderAccessor
instances with. |
Modifier and Type | Class and Description |
---|---|
class |
AlternativeJdkIdGenerator
An
IdGenerator that uses SecureRandom for the initial seed and
Random thereafter, instead of calling UUID.randomUUID() every
time as JdkIdGenerator does. |
class |
JdkIdGenerator
An
IdGenerator that calls UUID.randomUUID() . |
class |
SimpleIdGenerator
A simple
IdGenerator that starts at 1 and increments by 1 with each call. |
Modifier and Type | Field and Description |
---|---|
protected static IdGenerator |
AbstractWebSocketSession.idGenerator |