What is the best way to send a data stream from the wearable to the phone? I have a watch which generates a constant stream of data, which I want to send to the phone. None of the data packets should get lost. That means data needs to be chached as long as there is no phone connected. Both mechanism of the Wearable Data Layer do not really suit my needs as far as I understand:
- Messages: unreliable, if handheld is disconnected the data gets lost
- DataItem: every data point would need a unique path, what seems rather inpractical and I would have to delete the data item afterwards.
I am just new to wearable development, maybe the answer is kind of obvious and I just can't see it-