Interface CloudEventsFormat

All Superinterfaces:
DeliveryFormat
All Known Subinterfaces:
DeliveryCloudEventsFormat
All Known Implementing Classes:
CloudEventsFormatImpl

public interface CloudEventsFormat extends DeliveryFormat

The CloudEventsFormat can be used with any Destination, and the payload is delivered in the JSON Event Format. AzureEventGridDestination offers native support to filter and route CloudEvents.


Example to create an instance using the builder pattern

     CloudEventsFormat cloudEventsFormat = CloudEventsFormat.builder()
             .cloudEventsVersion("{cloudEventsVersion}")
             .build()