I am using Cumulocity Java Agent to send sensor's data from Agent to server.
Because of the volume of data is very huge, I want to send bulk of data in one Http post request.
But after spending some hours looking at the source code of package com.cumulocity.sdk.client.measurement
I think there is only the version of posting only one measurement at once. Am I right ?
So, in my project, I am using HttpClient to send bulk of data (in format of a JSONArray) and it is working.
But my client wants to know why I have to implement it myself, so I wonder whether the API has not been implemented yet or I am wrong.
Thanks a lot.