- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.liveramp.hank.zookeeper.ZooKeeperPlus.getData()
方法的一些代码示例,展示了ZooKeeperPlus.getData()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperPlus.getData()
方法的具体详情如下:
包路径:com.liveramp.hank.zookeeper.ZooKeeperPlus
类名称:ZooKeeperPlus
方法名:getData
暂无
代码示例来源:origin: LiveRamp/hank
public String getString(String path) throws KeeperException, InterruptedException {
try {
byte[] data = getData(path, false, null);
if (data == null) {
return null;
}
return new String(data, "UTF-8");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: LiveRamp/hank
public int getInt(String path) throws KeeperException, InterruptedException {
return Integer.parseInt(new String(getData(path, false, new Stat())));
}
代码示例来源:origin: LiveRamp/hank
public long getLong(String path) throws KeeperException, InterruptedException {
return Long.parseLong(new String(getData(path, false, new Stat())));
}
代码示例来源:origin: LiveRamp/hank
public Long getLongOrNull(String path) throws KeeperException, InterruptedException {
if (exists(path, false) == null) {
return null;
} else {
return Long.parseLong(new String(getData(path, false, new Stat())));
}
}
代码示例来源:origin: LiveRamp/hank
public static Boolean get(ZooKeeperPlus zk, String nodePath) throws InterruptedException, KeeperException {
return decodeValue(zk.getData(nodePath, null, null));
}
代码示例来源:origin: LiveRamp/hank
public static Integer get(ZooKeeperPlus zk, String nodePath) throws InterruptedException, KeeperException {
return decodeValue(zk.getData(nodePath, null, null));
}
代码示例来源:origin: LiveRamp/hank
private boolean watchForData() throws InterruptedException, KeeperException {
if (LOG.isTraceEnabled()) {
LOG.trace(String.format("Getting value for %s", nodePath));
}
try {
synchronized (this) {
value = decode(zk.getData(nodePath, watcher, stat));
return true;
}
} catch (KeeperException.NoNodeException e) {
watchForCreation();
return false;
}
}
代码示例来源:origin: LiveRamp/hank
private void dumpZk(String parentPath, String nodeName, int depth) throws Exception {
System.err.print(StringUtils.repeat(" ", depth));
System.err.print("/" + nodeName);
String nodePath = ZkPath.append(parentPath, nodeName);
nodePath = nodePath.replace("//", "/");
byte[] data = zk.getData(nodePath, false, null);
if (data == null) {
System.err.print(" -> null");
} else {
System.err.print(" -> [bytes]");
}
System.err.println();
List<String> children = zk.getChildren(nodePath, false);
for (String child : children) {
dumpZk(nodePath, child, depth + 1);
}
}
代码示例来源:origin: LiveRamp/hank
private int getNextDomainId() throws KeeperException, InterruptedException {
final String domainIdCounterPath = ZkPath.append(domainsRoot, KEY_DOMAIN_ID_COUNTER);
if (zk.exists(domainIdCounterPath, false) == null) {
zk.create(domainIdCounterPath, Integer.toString(1).getBytes());
return 1;
}
while (true) {
final Stat stat = new Stat();
final byte[] data = zk.getData(domainIdCounterPath, false, stat);
int lastVersionNumber = Integer.parseInt(new String(data));
try {
lastVersionNumber++;
zk.setData(domainIdCounterPath, Integer.toString(lastVersionNumber).getBytes(), stat.getVersion());
return lastVersionNumber;
} catch (KeeperException.BadVersionException e) {
if (LOG.isDebugEnabled()) {
LOG.debug("Tried to set the domain id counter to " + lastVersionNumber + " but was preempted by another writer. Retrying.");
}
}
}
}
代码示例来源:origin: LiveRamp/hank
@Override
public String load(ZooKeeperPlus zk, String basePath, String relPath) {
try {
return new String(zk.getData(ZkPath.append(basePath, relPath), false, new Stat()));
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
代码示例来源:origin: LiveRamp/hank
@Test
public void testIt() throws Exception {
final ZooKeeperPlus zk = getZk();
zk.ensureCreated("/", null, CreateMode.PERSISTENT);
assertExists("/", zk);
zk.ensureCreated("/simple", "1".getBytes(), CreateMode.PERSISTENT);
assertExists("/simple", zk);
zk.ensureCreated("/simple", "2".getBytes(), CreateMode.PERSISTENT);
assertExists("/simple", zk);
assertTrue(Arrays.equals(zk.getData("/simple", false, null), "1".getBytes()));
zk.ensureCreated("/deeper/file", null, CreateMode.PERSISTENT);
assertExists("/deeper/file", zk);
assertExists("/deeper", zk);
zk.ensureCreated("/simple/even/deeper", "3".getBytes(), CreateMode.PERSISTENT);
assertTrue(Arrays.equals(zk.getData("/simple", false, null), "1".getBytes()));
}
代码示例来源:origin: LiveRamp/hank
@Test
public void testIt() throws Exception {
final ZooKeeperPlus zk = getZk();
final String colRoot = ZkPath.append(getRoot(), "collection");
zk.create(colRoot, null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
final ElementLoader<String> elementLoader = (zk1, basePath, relPath) -> {
try {
return new String(zk1.getData(ZkPath.append(basePath, relPath), false, new Stat()));
} catch (Exception e) {
throw new RuntimeException(e);
}
};
final WatchedMap<String> c1 = new WatchedMap<>(zk, colRoot, elementLoader);
dumpZk();
WaitUntil.orDie(() -> 0 == c1.size());
assertEquals(0, c1.size());
zk.create(ZkPath.append(colRoot, "first"), "data".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
WaitUntil.orDie(() -> 1 == c1.size());
assertEquals(1, c1.size());
}
我如何在Android工作室项目中实现OneSignal时解决这个问题?
我正在从另一个电子表格中导入一个范围,然后使用此脚本将其粘贴到当前电子表格中: function getdata() { var values = SpreadsheetApp.openById('X
我正在观看来自 Slidenerd 的关于在 Android 上制作 Recycle View 的 Android 教程。这个链接:https://www.youtube.com/watch?v=Oo
public function json_product_list($where, $order){ global $_M; $this->table = load::sys_clas
我正在开发一个 Silverlight 3 应用程序,我想将所有意外错误处理委托(delegate)给一个我命名为 ErrorHandler 的类的单个实例。 .这个类有一个名为 HandleAppl
我有一个网站,允许用户进行输入并创建新内容。我总是使用tinymce 作为输入字段。今天切换到 ckeditor 后,我注意到我遇到了与最初使用 tinymce 时遇到的相同问题: 提交表单时,编辑器
我知道这个问题已经被问过几次了,但还没有一个答案真正帮助我解决我的问题。 我为三个下拉菜单设置了三个事件订阅者,它们相互依赖。 所以在我的 FormType 中我说: public functio
我无法理解如何从 short[] 获取 RGBA 值,该值是从 bufferedImage.getRaster().dataBuffer.getData() 获取的,如果 dataBuffer 是Da
#include #include #define MAX 20 #define MAX_BASE 8 #define ROW 9 #define COLUMN_SCORE 12 #define
谁能帮我理解这背后的逻辑? $(document).ready(function() { getData([renderData]); }); function renderData(JSON
我有一个类,比如“CDownloader”,它读取一些 XML 数据并提供通过节点名称的访问。它具有一些 getter 函数,如下所示: BOOL CDownloader::getInteger (
对于大学来说,我必须制作一个带有 MVC 风格编码的 JavaScript 游戏。 (模型、 View 、 Controller )。我对此很陌生,所以请不要太难。我收到以下错误:“未捕获类型错误:无
我对 Python 模块 PIL 有疑问: 每当我在图像上调用 getdata() 方法时,都会返回一些奇怪的东西。 from PIL import Image # Histogram class t
我正在使用 Texture2D.GetData()创建 Tilemap 的方法。这在我第一次执行时总是有效,但第二次该方法只是返回其他颜色,混淆了整个算法。我完全没有理由这样做。 我的代码: swit
我刚开始学习XNA/MonoGame,遇到了一个奇怪的异常。 错误提示:未实现方法或操作。 更奇怪的是,一个非常相似、几乎相同的代码却能工作。唯一的区别是其他代码在 XNA 和另一台计算机上运行,
首先,我会先说我是 javascript 的新手,所以希望这不是一个完整的脸谱问题。话虽如此,当用户点击它时,以下代码应该提醒编辑器的值。 function openEditor(){ html =
我正在使用 Monogame 将一款游戏从 XNA 转换到 iOS。 在下面的代码片段中,smallDeform 是一个 Texture2D,我在其上调用了 GetData 方法。 smallDefo
我有一个属性 cdn_image_name,它适用于大约 90 000 种产品。最近,内容编辑报告说大约有三种产品缺少图片。我已将问题确定为 Magento 的 getData() 方法。 这是与原始
byte [] r = new byte[4096]; DatagramPacket dpr = new DatagramPacket(r, r.length); sock.receive(dpr);
本文整理了Java中org.zeromq.ZFrame.getData()方法的一些代码示例,展示了ZFrame.getData()的具体用法。这些代码示例主要来源于Github/Stackoverf
我是一名优秀的程序员,十分优秀!