Tabnine Logo
SimpUserRegistry.findSubscriptions
Code IndexAdd Tabnine to your IDE (free)

How to use
findSubscriptions
method
in
org.springframework.messaging.simp.user.SimpUserRegistry

Best Java code snippets using org.springframework.messaging.simp.user.SimpUserRegistry.findSubscriptions (Showing top 4 results out of 315)

origin: spring-projects/spring-framework

@Override
public Set<SimpSubscription> findSubscriptions(SimpSubscriptionMatcher matcher) {
  Set<SimpSubscription> result = new HashSet<>();
  for (UserRegistrySnapshot registry : this.remoteRegistries.values()) {
    result.addAll(registry.findSubscriptions(matcher));
  }
  result.addAll(this.localRegistry.findSubscriptions(matcher));
  return result;
}
origin: org.springframework/spring-messaging

@Override
public Set<SimpSubscription> findSubscriptions(SimpSubscriptionMatcher matcher) {
  Set<SimpSubscription> result = new HashSet<>();
  for (UserRegistrySnapshot registry : this.remoteRegistries.values()) {
    result.addAll(registry.findSubscriptions(matcher));
  }
  result.addAll(this.localRegistry.findSubscriptions(matcher));
  return result;
}
origin: apache/servicemix-bundles

@Override
public Set<SimpSubscription> findSubscriptions(SimpSubscriptionMatcher matcher) {
  Set<SimpSubscription> result = new HashSet<>();
  for (UserRegistrySnapshot registry : this.remoteRegistries.values()) {
    result.addAll(registry.findSubscriptions(matcher));
  }
  result.addAll(this.localRegistry.findSubscriptions(matcher));
  return result;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-messaging

@Override
public Set<SimpSubscription> findSubscriptions(SimpSubscriptionMatcher matcher) {
  Set<SimpSubscription> result = new HashSet<>();
  for (UserRegistrySnapshot registry : this.remoteRegistries.values()) {
    result.addAll(registry.findSubscriptions(matcher));
  }
  result.addAll(this.localRegistry.findSubscriptions(matcher));
  return result;
}
org.springframework.messaging.simp.userSimpUserRegistryfindSubscriptions

Javadoc

Find subscriptions with the given matcher.

Popular methods of SimpUserRegistry

  • getUser
    Get the user for the given name.
  • getUsers
    Return a snapshot of all connected users.The returned set is a copy and will not reflect further cha
  • getUserCount
    Return the count of all connected users.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • getResourceAsStream (ClassLoader)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • String (java.lang)
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now