- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperSubscriptionRepository
类的一些代码示例,展示了ZookeeperSubscriptionRepository
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZookeeperSubscriptionRepository
类的具体详情如下:
包路径:pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperSubscriptionRepository
类名称:ZookeeperSubscriptionRepository
暂无
代码示例来源:origin: allegro/hermes
@Override
public SubscriptionRepository provide() {
return new ZookeeperSubscriptionRepository(zookeeper, mapper, paths, topicRepository);
}
代码示例来源:origin: allegro/hermes
@Override
public List<String> listSubscriptionNames(TopicName topicName) {
return childrenOf(paths.subscriptionsPath(topicName));
}
代码示例来源:origin: allegro/hermes
private Optional<Subscription> getSubscriptionDetails(TopicName topicName, String subscriptionName, boolean quiet) {
ensureSubscriptionExists(topicName, subscriptionName);
return readFrom(paths.subscriptionPath(topicName, subscriptionName), Subscription.class, quiet);
}
代码示例来源:origin: allegro/hermes
@Override
public List<Subscription> listSubscriptions(TopicName topicName) {
return listSubscriptionNames(topicName).stream()
.map(subscription -> getSubscriptionDetails(topicName, subscription, true))
.filter(Optional::isPresent)
.map(Optional::get)
.collect(Collectors.toList());
}
}
代码示例来源:origin: allegro/hermes
@Override
public void updateSubscriptionState(TopicName topicName, String subscriptionName, Subscription.State state) {
ensureSubscriptionExists(topicName, subscriptionName);
logger.info("Changing subscription {} state to {}",
new SubscriptionName(subscriptionName, topicName).getQualifiedName(), state.toString());
Subscription modifiedSubscription = getSubscriptionDetails(topicName, subscriptionName);
if (!modifiedSubscription.getState().equals(state)) {
modifiedSubscription.setState(state);
updateSubscription(modifiedSubscription);
}
}
代码示例来源:origin: allegro/hermes
@Override
public void removeSubscription(TopicName topicName, String subscriptionName) {
ensureSubscriptionExists(topicName, subscriptionName);
logger.info("Removing subscription {}", new SubscriptionName(subscriptionName, topicName).getQualifiedName());
remove(paths.subscriptionPath(topicName, subscriptionName));
}
代码示例来源:origin: allegro/hermes
@Override
public void updateSubscription(Subscription modifiedSubscription) {
ensureSubscriptionExists(modifiedSubscription.getTopicName(), modifiedSubscription.getName());
logger.info("Updating subscription {}", modifiedSubscription.getQualifiedName());
overwrite(paths.subscriptionPath(modifiedSubscription), modifiedSubscription);
}
代码示例来源:origin: allegro/hermes
@Override
public Subscription getSubscriptionDetails(TopicName topicName, String subscriptionName) {
return getSubscriptionDetails(topicName, subscriptionName, false).get();
}
代码示例来源:origin: allegro/hermes
@Override
public boolean subscriptionExists(TopicName topicName, String subscriptionName) {
return pathExists(paths.subscriptionPath(topicName, subscriptionName));
}
代码示例来源:origin: allegro/hermes
@Override
public void createSubscription(Subscription subscription) {
ensureConnected();
topicRepository.ensureTopicExists(subscription.getTopicName());
String subscriptionPath = paths.subscriptionPath(subscription);
logger.info("Creating subscription {}", subscription.getQualifiedName());
try {
zookeeper.create().forPath(subscriptionPath, mapper.writeValueAsBytes(subscription));
} catch (KeeperException.NodeExistsException ex) {
throw new SubscriptionAlreadyExistsException(subscription, ex);
} catch (Exception ex) {
throw new InternalProcessingException(ex);
}
}
代码示例来源:origin: allegro/hermes
@Override
public List<Subscription> getSubscriptionDetails(Collection<SubscriptionName> subscriptionNames) {
return subscriptionNames.stream()
.map(n -> getSubscriptionDetails(n.getTopicName(), n.getName()))
.collect(Collectors.toList());
}
代码示例来源:origin: allegro/hermes
@Bean
SubscriptionRepository subscriptionRepository() {
return new ZookeeperSubscriptionRepository(storageZookeeper(), objectMapper, zookeeperPaths(), topicRepository());
}
代码示例来源:origin: allegro/hermes
@Override
public Subscription getSubscriptionDetails(SubscriptionName name) {
return getSubscriptionDetails(name.getTopicName(), name.getName());
}
代码示例来源:origin: allegro/hermes
ConsumerTestRuntimeEnvironment(Supplier<CuratorFramework> curatorSupplier) {
this.paths = new ZookeeperPaths("/hermes");
this.curatorSupplier = curatorSupplier;
this.curator = curatorSupplier.get();
this.groupRepository = new ZookeeperGroupRepository(curator, objectMapper, paths);
this.topicRepository = new ZookeeperTopicRepository(curator, objectMapper, paths, groupRepository);
this.subscriptionRepository = new ZookeeperSubscriptionRepository(
curator, objectMapper, paths, topicRepository
);
this.configFactory = new MutableConfigFactory()
.overrideProperty(CONSUMER_WORKLOAD_REBALANCE_INTERVAL, 1)
.overrideProperty(CONSUMER_WORKLOAD_CONSUMERS_PER_SUBSCRIPTION, 2);
this.consumersRegistry = new ConsumerNodesRegistry(
curator, executorService, paths.consumersRegistryPath(CLUSTER_NAME), "id",
DEATH_OF_CONSUMER_AFTER_SECONDS, Clock.systemDefaultZone());
this.metricsSupplier = () -> new HermesMetrics(new MetricRegistry(), new PathsCompiler("localhost"));
try {
consumersRegistry.start();
} catch (Exception e) {
throw new InternalProcessingException(e);
}
}
我想使用 Golang 电子邮件模板当我运行时 go get -u github.com/matcornic/hermes/v2 it returns package github.com/matco
我正在尝试启用 Hermes在一个新项目中,但尽管我在 android/app/build.gradle 中启用了它,但它没有启用。如文档中所述,我无法在应用程序中看到 Engine: Hermes
鳍状肢 Hermes debugger不显示 请问怎么让他正常显示? react-native:0.62.2(从0.61更新到0.62.2) https://fbflipper.com/ https:
我们已将 PayPal 标准结帐的表单 URL 设置为 https://www.paypal.com/uk/cgi-bin/webscr .当我们从印度对其进行测试时,它运行良好。传递给 PayPal
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths类的一些代码示例,展示了ZookeeperPaths类的
本文整理了Java中pl.allegro.tech.hermes.common.broker.ZookeeperBrokerStorage类的一些代码示例,展示了ZookeeperBrokerStor
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperTopicRepository类的一些代码示例,展示了Zookee
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperSubscriptionRepository类的一些代码示例,展示
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperGroupRepository类的一些代码示例,展示了Zookee
本文整理了Java中pl.allegro.tech.hermes.test.helper.zookeeper.ZookeeperWaiter类的一些代码示例,展示了ZookeeperWaiter类的具
本文整理了Java中pl.allegro.tech.hermes.common.admin.zookeeper.ZookeeperAdminCache类的一些代码示例,展示了ZookeeperAdmi
本文整理了Java中pl.allegro.tech.hermes.common.message.undelivered.ZookeeperUndeliveredMessageLog类的一些代码示例,展
我正在维护一个 brownfield react-native 应用程序,并将 react-native 版本从 0.59.9 迁移到 0.63.4。我完成了更改日志和升级助手中定义的步骤,并且可以在
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.consumersRateHistoryPath()方
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.consumersMaxRatePath()方法的一些
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.topicsBlacklistPath()方法的一些代
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.maxRateLeaderPath()方法的一些代码示
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.consumersRatePath()方法的一些代码示
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.groupsPath()方法的一些代码示例,展示了Zo
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.oAuthProvidersPath()方法的一些代码
我是一名优秀的程序员,十分优秀!