Uses of Interface
org.springframework.util.IdGenerator
Packages that use IdGenerator Package Description org.springframework.messaging Support for working with messaging APIs and protocols.org.springframework.messaging.support Provides implementations ofMessagealong with a MessageBuilder and MessageHeaderAccessor for building and working with messages and message headers, as well as variousMessageChannelimplementations 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.Uses of IdGenerator in org.springframework.messaging
Methods in org.springframework.messaging that return IdGenerator Modifier and Type Method Description protected static IdGeneratorMessageHeaders. getIdGenerator()Uses of IdGenerator in org.springframework.messaging.support
Methods in org.springframework.messaging.support that return IdGenerator Modifier and Type Method Description IdGeneratorIdTimestampMessageHeaderInitializer. getIdGenerator()Return the configuredIdGenerator, if any.Methods in org.springframework.messaging.support with parameters of type IdGenerator Modifier and Type Method Description voidIdTimestampMessageHeaderInitializer. setIdGenerator(IdGenerator idGenerator)Configure the IdGenerator strategy to initializeMessageHeaderAccessorinstances with.Uses of IdGenerator in org.springframework.util
Classes in org.springframework.util that implement IdGenerator Modifier and Type Class Description classAlternativeJdkIdGeneratorAnIdGeneratorthat usesSecureRandomfor the initial seed andRandomthereafter, instead of callingUUID.randomUUID()every time asJdkIdGeneratordoes.classJdkIdGeneratorAnIdGeneratorthat callsUUID.randomUUID().classSimpleIdGeneratorA simpleIdGeneratorthat 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 IdGenerator Modifier and Type Field Description protected static IdGeneratorAbstractWebSocketSession. idGenerator