1.4 KiB
1.4 KiB
title | nav_order |
---|---|
CloudEvents Protocol Buffers | 4 |
CloudEvents Protocol Buffers
This module provides the Protocol Buffer (protobuf) EventFormat
implementation using the Java
Protobuf runtime and classes generated from the CloudEvents
proto spec.
For Maven based projects, use the following dependency:
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-protobuf</artifactId>
<version>2.1.1</version>
</dependency>
Using the Protobuf Event Format
You don't need to perform any operation to configure the module, more than adding the dependency to your project:
import io.cloudevents.CloudEvent;
import io.cloudevents.core.format.EventFormatProvider;
import io.cloudevents.core.builder.CloudEventBuilder;
import io.cloudevents.protobuf.ProtobufFormat;
CloudEvent event = CloudEventBuilder.v1()
.withId("hello")
.withType("example.vertx")
.withSource(URI.create("http://localhost"))
.build();
byte[]serialized = EventFormatProvider
.getInstance()
.resolveFormat(ProtobufFormat.CONTENT_TYPE)
.serialize(event);
The EventFormatProvider
will resolve automatically the ProtobufFormat
using the
ServiceLoader
APIs.