EventHubs EventData.getProperties() documentation
See original GitHub issueIs your feature request related to a problem? Please describe.
In the EventHubs client, it is unclear which data types are supported for the properties of EventData class.
Describe the solution you’d like
Could we have an annotation/documentation that describes what data types are supported, as is the case for the .NET client.
Describe alternatives you’ve considered
It would be even nicer to have this included in the type system, rather than using a Map<String, Object>
.
Additional context
n/a
Information Checklist Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
- Description Added
- Expected solution specified
Issue Analytics
- State:
- Created a year ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
EventData Class | Microsoft Learn
Gets the set of free-form event properties which may be used for passing metadata associated with the event with the event body during...
Read more >EventData (Azure SDK for Java Reference Documentation)
Gets the set of free-form event properties which may be used for passing metadata associated with the event with the event body during...
Read more >com.microsoft.azure.eventhubs.EventData.getProperties java ...
Best Java code snippets using com.microsoft.azure.eventhubs.EventData. ... @Override public Map<String, Object> getProperties() { return eventData.
Read more >EventData (azure-eventhubs 0.13.0 API) - javadoc.io
The data structure encapsulating the Event being sent-to and received-from EventHubs. Each EventHubs partition can be visualized as a Stream of EventData ....
Read more >azure-sdk-for-java/EventData.java at main - GitHub
This repository is for active development of the Azure SDK for Java. For consumers of the SDK we recommend visiting our public developer...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The set documented is one supported across other languages. For example, .NET library does not support serializing a map within a map even though proton-j does.
Ahh, yeah. Ity should be easy enough to add documentation. thanks!