congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
GroupRepository.listGroupNames
Code IndexAdd Tabnine to your IDE (free)

How to use
listGroupNames
method
in
pl.allegro.tech.hermes.domain.group.GroupRepository

Best Java code snippets using pl.allegro.tech.hermes.domain.group.GroupRepository.listGroupNames (Showing top 4 results out of 315)

origin: allegro/hermes

public List<String> listGroupNames() {
  return groupRepository.listGroupNames();
}
origin: allegro/hermes

@Override
public void start() {
  for(String groupName : groupRepository.listGroupNames()) {
    for(Topic topic : topicRepository.listTopics(groupName)) {
      topicCache.put(topic.getQualifiedName(), cachedTopic(topic));
    }
  }
}
origin: allegro/hermes

  @Override
  public void start() {
    for(String groupName : groupRepository.listGroupNames()) {
      for(String topicName : topicRepository.listTopicNames(groupName)) {
        for(Subscription subscription : subscriptionRepository.listSubscriptions(new TopicName(groupName, topicName))) {
          subscriptions.put(subscription.getQualifiedName(), subscription);
        }
      }
    }
  }
}
origin: pl.allegro.tech.hermes/hermes-consumers

  @Override
  public void start() {
    for(String groupName : groupRepository.listGroupNames()) {
      for(String topicName : topicRepository.listTopicNames(groupName)) {
        for(Subscription subscription : subscriptionRepository.listSubscriptions(new TopicName(groupName, topicName))) {
          subscriptions.put(subscription.getQualifiedName(), subscription);
        }
      }
    }
  }
}
pl.allegro.tech.hermes.domain.groupGroupRepositorylistGroupNames

Popular methods of GroupRepository

  • createGroup
  • groupExists
  • ensureGroupExists
  • getGroupDetails
  • listGroups
  • removeGroup
  • updateGroup

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • setRequestProperty (URLConnection)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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