Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Feat: getRunningOrder
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed May 28, 2018
1 parent 249923a commit 09d3c1e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/coreHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,18 @@ export class CoreMosDeviceHandler {
throw err
})
}
triggerGetRunningOrder (roId: string): Promise<any> {
console.log('triggerGetRunningOrder')
return this._mosDevice.getRunningOrder(new MosString128(roId))
.then((results) => {
// console.log('GOT REPLY', results)
return results
})
.catch((err) => {
console.log('GOT ERR', err, typeof err, err.toString())
throw err
})
}
test (a: string) {
return new Promise(resolve => {
setTimeout(() => {
Expand Down

0 comments on commit 09d3c1e

Please sign in to comment.