etcd4j

An async ETCD Java Client.

Лицензия

Лицензия

Группа

Группа

com.xqbase
Идентификатор

Идентификатор

etcd4j
Последняя версия

Последняя версия

1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

etcd4j
An async ETCD Java Client.
Ссылка на сайт

Ссылка на сайт

https://github.com/AdoHe/etcd4j
Система контроля версий

Система контроля версий

https://github.com/AdoHe/etcd4j

Скачать etcd4j

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.xqbase/etcd4j/ -->
<dependency>
    <groupId>com.xqbase</groupId>
    <artifactId>etcd4j</artifactId>
    <version>1.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.xqbase/etcd4j/
implementation 'com.xqbase:etcd4j:1.2'
// https://jarcasting.com/artifacts/com.xqbase/etcd4j/
implementation ("com.xqbase:etcd4j:1.2")
'com.xqbase:etcd4j:jar:1.2'
<dependency org="com.xqbase" name="etcd4j" rev="1.2">
  <artifact name="etcd4j" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.xqbase', module='etcd4j', version='1.2')
)
libraryDependencies += "com.xqbase" % "etcd4j" % "1.2"
[com.xqbase/etcd4j "1.2"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.apache.httpcomponents : httpasyncclient jar 4.0.2
com.google.guava : guava jar 14.0.1
com.google.code.gson : gson jar 2.2.4

test (4)

Идентификатор библиотеки Тип Версия
org.eclipse.jetty : jetty-server jar 8.1.16.v20140903
org.eclipse.jetty : jetty-servlet jar 8.1.16.v20140903
junit : junit jar 4.11
org.hamcrest : hamcrest-all jar 1.3

Модули Проекта

Данный проект не имеет модулей.

etcd4j: Java binding for etcd

A more powerful and stable Java client library for the awesome etcd, a highly available key value store. This library is based on Apache HttpAsyncClient, provides async api. It supports all key based etcd requests, adds request redirect handler and retry handler, which is really useful when you put etcd into production cluster.This library has been used in real production for period of time.

Download

Maven

<dependency>
    <groupId>com.xqbase</groupId>
    <artifactId>etcd4j</artifactId>
    <version>1.2</version>
</dependency>

Gradle

compile 'com.xqbase:etcd4j:1.2'

Usage

Check out the EtcdClientTest.java for more details about how to use this library, but here's a quick code example:

EtcdClient client = new EtcdClient(URI.create("http://127.0.0.1:4001"));

String key = "/message";
// set the key
client.set(key, "beepboop");
// get the value of the key
String value = client.get(key);
Assert.assertEquals("beepboop", value);
// delete the key
client.delete(key);
value = client.get(key);
Assert.assertNull(value);

Licence

(The MIT License)

Copyright (c) 2010 TonyAdo

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Версии библиотеки

Версия
1.2
1.0