My implementation has some media player pages with track progress indicators. I get a real update on track progress every 20-30 seconds or when the track changes but wanted to update the track progress every second. Easiest way - in onPoll I put a timeout on mqtt.readMessage() of 1000ms so it falls through at least once per second. I can’t find the syntax of mqtt.readMessage(1000) - can any one tell me how to put a 1 second timeout on readMessage()?