Here is a complete listing of the main component.
import QtQuick 2.11
import QtQuick.Controls 2.1
import QtQuick.Extras 1.4
 
 
Item {
    width: 640
    height: 480
 
    Service {
        id: clientService
 
        name: "Dummy Client"
 
        DummyClient {
            id: client
 
            latency: 250
            connectLatency: 0
            disconnectLatency: 0
        }
    }
 
    Screen {
        anchors.fill: parent
    }
 
    Component.onCompleted: ServiceManager.start()
}