* The client sends a subscribe message request to the backend * to start receive updates for a specific rundown, e.g: * * SUBSCRIBE rundown profile\r\n */
| 36 | * SUBSCRIBE rundown profile\r\n |
| 37 | */ |
| 38 | void RepositoryDevice::subscribe(const QString& rundown, const QString& profile) |
| 39 | { |
| 40 | writeMessage(QString("SUBSCRIBE %1 %2").arg(rundown).arg(profile)); |
| 41 | } |
| 42 | |
| 43 | /* |
| 44 | * Parse incoming command, e.g: |
no outgoing calls
no test coverage detected