Uses of Interface
org.springframework.messaging.simp.user.SimpUserRegistry
Packages that use SimpUserRegistry Package Description org.springframework.messaging.simp.config Configuration support for WebSocket messaging using higher level messaging protocols.org.springframework.messaging.simp.user Support for handling messages to "user" destinations (i.e.org.springframework.web.socket.config.annotation Support for annotation-based WebSocket setup in configuration classes.org.springframework.web.socket.messaging WebSocket integration for Spring's messaging module.Uses of SimpUserRegistry in org.springframework.messaging.simp.config
Methods in org.springframework.messaging.simp.config that return SimpUserRegistry Modifier and Type Method Description protected SimpUserRegistryAbstractMessageBrokerConfiguration. createLocalUserRegistry()Deprecated.as of 5.1 in favor ofAbstractMessageBrokerConfiguration.createLocalUserRegistry(Integer)protected abstract SimpUserRegistryAbstractMessageBrokerConfiguration. createLocalUserRegistry(Integer order)Create the user registry that provides access to local users.SimpUserRegistryAbstractMessageBrokerConfiguration. userRegistry()Uses of SimpUserRegistry in org.springframework.messaging.simp.user
Classes in org.springframework.messaging.simp.user that implement SimpUserRegistry Modifier and Type Class Description classMultiServerUserRegistrySimpUserRegistrythat looks up users in a "local" user registry as well as a set of "remote" user registries.Methods in org.springframework.messaging.simp.user that return SimpUserRegistry Modifier and Type Method Description SimpUserRegistryDefaultUserDestinationResolver. getSimpUserRegistry()Return the configuredSimpUserRegistry.Constructors in org.springframework.messaging.simp.user with parameters of type SimpUserRegistry Constructor Description DefaultUserDestinationResolver(SimpUserRegistry userRegistry)Create an instance that will access user session id information through the provided registry.MultiServerUserRegistry(SimpUserRegistry localRegistry)Create an instance wrapping the local user registry.Uses of SimpUserRegistry in org.springframework.web.socket.config.annotation
Methods in org.springframework.web.socket.config.annotation that return SimpUserRegistry Modifier and Type Method Description protected SimpUserRegistryWebSocketMessageBrokerConfigurationSupport. createLocalUserRegistry(Integer order)Uses of SimpUserRegistry in org.springframework.web.socket.messaging
Classes in org.springframework.web.socket.messaging that implement SimpUserRegistry Modifier and Type Class Description classDefaultSimpUserRegistryA default implementation ofSimpUserRegistrythat relies onAbstractSubProtocolEventapplication context events to keep track of connected users and their subscriptions.