Uses of Interface
org.springframework.util.IdGenerator
Packages that use IdGenerator
Package
Description
Support for working with messaging APIs and protocols.
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.Miscellaneous utility classes, such as utilities for working with strings,
classes, collections, reflection, etc.
Classes adapting Spring's WebSocket API to and from WebSocket providers.
-
Uses of IdGenerator in org.springframework.messaging
Methods in org.springframework.messaging that return IdGenerator -
Uses of IdGenerator in org.springframework.messaging.support
Methods in org.springframework.messaging.support that return IdGeneratorModifier and TypeMethodDescriptionIdTimestampMessageHeaderInitializer.getIdGenerator()
Return the configuredIdGenerator
, if any.Methods in org.springframework.messaging.support with parameters of type IdGeneratorModifier and TypeMethodDescriptionvoid
IdTimestampMessageHeaderInitializer.setIdGenerator
(IdGenerator idGenerator) Configure the IdGenerator strategy to initializeMessageHeaderAccessor
instances with. -
Uses of IdGenerator in org.springframework.util
Classes in org.springframework.util that implement IdGeneratorModifier and TypeClassDescriptionclass
AnIdGenerator
that usesSecureRandom
for the initial seed andRandom
thereafter, instead of callingUUID.randomUUID()
every time asJdkIdGenerator
does.class
AnIdGenerator
that callsUUID.randomUUID()
.class
A simpleIdGenerator
that starts at 1, increments up toLong.MAX_VALUE
, and then rolls over. -
Uses of IdGenerator in org.springframework.web.socket.adapter
Fields in org.springframework.web.socket.adapter declared as IdGeneratorModifier and TypeFieldDescriptionprotected static final IdGenerator
AbstractWebSocketSession.idGenerator