aes70
Version:
A controller library for the AES70 protocol.
70 lines (67 loc) • 1.43 kB
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Commands controllers can send to OcaTasks to change their states.
* **Deprecated** in OCA 1.5.
* @class OcaTaskCommand
*/
export class OcaTaskCommand extends Enum({
None: 0,
Prepare: 1,
Start: 3,
Stop: 4,
Abort: 5,
Disable: 6,
Clear: 7,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaTaskCommand}
* @member None
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaTaskCommand}
* @member Prepare
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaTaskCommand}
* @member Start
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``4``.
* @type {OcaTaskCommand}
* @member Stop
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``5``.
* @type {OcaTaskCommand}
* @member Abort
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``6``.
* @type {OcaTaskCommand}
* @member Disable
* @memberof OcaTaskCommand
* @static
*/
/**
* Singleton object corresponding to the entry with value ``7``.
* @type {OcaTaskCommand}
* @member Clear
* @memberof OcaTaskCommand
* @static
*/