| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The Æthernet Java SDK provides secure asynchronous messaging between applications, devices, and backend services through the Æthernet network.
It handles registration, end-to-end encryption, connection recovery, binary serialization, request batching, device-to-device messaging, and access-control operations.
Packages are currently served from the Æthernet Maven repository:
repositories {
mavenCentral()
maven {
url = uri("https://nexus.aethernet.io/maven/releases/")
}
}
dependencies {
implementation("io.aether:cloud-client:+")
implementation("io.aether.crypto:sodium:+")
}Use hydrogen-fast instead of sodium when your JDK and deployment support the Foreign Function & Memory API:
implementation("io.aether.crypto:hydrogen-fast:+")For reproducible production builds, replace + with a tested version.
ClientStateInMemory state = new ClientStateInMemory(
StandardUUIDs.TEST_UID,
List.of(URI.create("tcp://registration.aethernet.io:9010")),
null,
CryptoLib.SODIUM
);
AetherCloudClient client = new AetherCloudClient(state, "example-client");
try {
client.connect();
client.startFuture.join();
System.out.println("Client UID: " + client.getUid());
} finally {
client.destroy(true);
}Use a project-specific parent UUID and persistent state outside development examples.
git clone https://github.com/aethernetio/client-java.git
cd client-java
./gradlew buildOn Windows:
.\gradlew.bat buildThe repository also contains point-to-point, CLI, chat, smart-home, and echo projects.
The package coordinates and repository layout may change before a stable public release. Report security-sensitive issues privately rather than including keys, credentials, or production identifiers in a public issue.
See LICENSE.
| Back | FazBrowse Home | New Git URL |