iCloud binding development

Hi all,

is this also the right place to ask questions related to binding development? If not I would be happy for a pointer where I can ask some (probably) basic questions.

with kind regards,
Patrik

To make sure that discovered things have data without the need to wait for the 1st refresh (which will take, depending on configuration) several minutes I use the following code:

    public void childHandlerInitialized(@NonNull ThingHandler childHandler, @NonNull Thing childThing) {
        super.childHandlerInitialized(childHandler, childThing);
        ((iCloudDeviceHandler) childHandler).update(iCloudData.getContent());
    }

Unfortunately the data in the inbox is not always updated. I also tried to update the data on channel link; same result … only after the 1st refresh data is shown. Feels like a timing issue/lost event. Any advice?

with kind regards,
Patrik