Java SDK for CloudEvents
Go to file
Francesco Guardiani 862e4a657a
Created kafka example (#194)
* Created kafka example

Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>

* Applied suggestions

Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
2020-07-02 09:25:43 +02:00
.mvn/wrapper
api Back to SNAPSHOT (#189) 2020-06-25 15:54:22 +02:00
core Back to SNAPSHOT (#189) 2020-06-25 15:54:22 +02:00
docs
examples Created kafka example (#194) 2020-07-02 09:25:43 +02:00
formats/json-jackson Back to SNAPSHOT (#189) 2020-06-25 15:54:22 +02:00
http Back to SNAPSHOT (#189) 2020-06-25 15:54:22 +02:00
kafka Back to SNAPSHOT (#189) 2020-06-25 15:54:22 +02:00
.editorconfig
.gitignore
.travis.deploy.sh
.travis.pubring
.travis.secring.enc
.travis.settings.xml
.travis.yml
CHANGELOG.md
LICENSE
README.md
README_v1.md
maintainer_guidelines.md
mvnw
mvnw.cmd
pom.xml Created kafka example (#194) 2020-07-02 09:25:43 +02:00
pr_guidelines.md

README.md

Java SDK for CloudEvents API

Build Status License Maven Central Javadocs

A Java API for the CloudEvents specification

Look at https://cloudevents.github.io/sdk-java/ for more documentation.

Checkout the changelog

Status

This SDK is considered work in progress. The community is working hard to bring you a new major version of the SDK with major enhancements both to APIs and to implementation.

If you want to know more about v1 of this SDK, check out the v1 readme

Stay tuned!

Supported features of the specification:

v0.3 v1.0
CloudEvents Core ✔️ ✔️
AMQP Protocol Binding
AVRO Event Format
HTTP Protocol Binding ✔️ ✔️
- Vert.x ✔️ ✔️
- Jakarta Restful WS ✔️ ✔️
JSON Event Format ✔️ ✔️
- Jackson ✔️ ✔️
Kafka Protocol Binding ✔️ ✔️
MQTT Protocol Binding
NATS Protocol Binding
Web hook

Motivation

The CloudEvents specification is a vendor-neutral specification for defining the format of event data that is being exchanged between different cloud systems. The specification basically defines an abstract envelope for any event data payload, without knowing specific implementation details of the actual underlying event. The current version of the spec is at 0.3 and it describes a simple event format, which was demonstrated at KubeCon 2018 using different Serverless platforms, such as Apache Openwhisk.

Java API

For Maven based projects, use the following to configure the CloudEvents Java SDK:

<dependency>
    <groupId>io.cloudevents</groupId>
    <artifactId>cloudevents-core</artifactId>
    <version>2.0.0-milestone1</version>
</dependency>

Community