Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. this.grpcServer.addService(updater.Updater.service, {
  2. getAllDevices: this.getAllDevices.bind(this),
  3. getCurrentFirmwareVersion: this.getCurrentFirmwareVersion.bind(this),
  4. getAvailableFirmwareVersion: this.getAvailableFirmwareVersion.bind(this),
  5. getInstallInstructions: this.getInstallInstructions.bind(this),
  6. initiateUpdate: this.initiateUpdate.bind(this),
  7. cancelUpdate: this.cancelUpdate.bind(this),
  8. getUpdateProgress: this.getUpdateProgress.bind(this),
  9. validateUpdate: this.validateUpdate.bind(this),
  10. getDeviceConfiguration: this.getDeviceConfiguration.bind(this),
  11. configureDevice: this.configureDevice.bind(this),
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement