congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Table (org.hibernate.mapping)
    A relational table
  • CodeWhisperer alternatives
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