createItem arent pushing anything to the clients in manualsync.
DataServiceTransaction dst = DataServiceTransaction.begin(false);
String ps[] = {"test_room"};
dst.setProducerSubtopics("inventory", ps);
...
Product p = new Product(0,"name_"+d.toString(),"description_str","image_path","catego ry_name",99.9, 100);
service.create(p);
...
dst.createItem( "inventory", p);
dst.commit();
what's wrong?
but dst.addItemToFill("inventory", fill, -1, p); works well.