- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths.subscriptionPath()
方法的一些代码示例,展示了ZookeeperPaths.subscriptionPath()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZookeeperPaths.subscriptionPath()
方法的具体详情如下:
包路径:pl.allegro.tech.hermes.infrastructure.zookeeper.ZookeeperPaths
类名称:ZookeeperPaths
方法名:subscriptionPath
暂无
代码示例来源:origin: allegro/hermes
public String subscriptionMetricsPath(TopicName topicName, String subscriptionName) {
return subscriptionPath(topicName, subscriptionName, METRICS_PATH);
}
代码示例来源:origin: allegro/hermes
public String subscriptionMetricPath(TopicName topicName, String subscriptionName, String metricName) {
return subscriptionPath(topicName, subscriptionName, METRICS_PATH, metricName);
}
代码示例来源:origin: allegro/hermes
public String subscribedKafkaTopicsPath(TopicName topicName, String subscriptionName) {
return Joiner.on(URL_SEPARATOR).join(subscriptionPath(topicName, subscriptionName), KAFKA_TOPICS_PATH);
}
代码示例来源:origin: allegro/hermes
@Override
public boolean subscriptionExists(TopicName topicName, String subscriptionName) {
return pathExists(paths.subscriptionPath(topicName, subscriptionName));
}
代码示例来源:origin: allegro/hermes
@Override
public Optional<SentMessageTrace> last(TopicName topicName, String subscriptionName) {
try {
String path = paths.subscriptionPath(topicName, subscriptionName, NODE_NAME);
if (exists(path)) {
return Optional.of(mapper.readValue(curator.getData().forPath(path), SentMessageTrace.class));
} else {
return Optional.empty();
}
} catch (Exception e) {
throw new InternalProcessingException(
format("Could not read latest undelivered message for topic: %s and subscription: %s .",
topicName.qualifiedName(), subscriptionName),
e);
}
}
代码示例来源:origin: allegro/hermes
public String subscriptionMetricPath(SubscriptionName subscriptionName, String metricName) {
return subscriptionPath(subscriptionName.getTopicName(), subscriptionName.getName(), METRICS_PATH, metricName);
}
代码示例来源: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
public String subscriptionPath(Subscription subscription) {
return subscriptionPath(subscription.getTopicName(), subscription.getName());
}
代码示例来源:origin: allegro/hermes
private void log(SentMessageTrace messageTrace) {
try {
String undeliveredPath = paths.subscriptionPath(messageTrace.getTopicName(), messageTrace.getSubscription(), NODE_NAME);
BackgroundPathAndBytesable<?> builder = exists(undeliveredPath) ? curator.setData() : curator.create();
builder.forPath(undeliveredPath, mapper.writeValueAsBytes(messageTrace));
} catch (Exception exception) {
LOGGER.warn(
format("Could not log undelivered message for topic: %s and subscription: %s",
messageTrace.getQualifiedTopicName(),
messageTrace.getSubscription()
),
exception
);
}
}
代码示例来源: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 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
@Before
public void setUp() throws Exception {
zookeeperClient.create().creatingParentsIfNeeded().forPath(paths.subscriptionPath(TOPIC, SUBSCRIPTION));
}
我想使用 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()方法的一些代码
我是一名优秀的程序员,十分优秀!