@wildboar/rose
Version:
Remote Operation Service Element PDUs in TypeScript
42 lines (41 loc) • 1.24 kB
JavaScript
/**
* @summary no_op
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* no-op OPERATION ::= {
* IDEMPOTENT TRUE
* ALWAYS RESPONDS FALSE
* CODE local:-1
* }
* ```
*
* @constant
* @type {OPERATION}
* @implements {OPERATION}
*/
export const no_op = {
class: 'OPERATION',
decoderFor: {
'&ArgumentType': undefined,
'&ResultType': undefined,
},
encoderFor: {
'&ArgumentType': undefined,
'&ResultType': undefined,
},
'&idempotent': false /* OBJECT_FIELD_SETTING */,
'&alwaysReturns': false /* OBJECT_FIELD_SETTING */,
'&operationCode': {
local: -1,
} /* OBJECT_FIELD_SETTING */ /* UNIQUE_OBJECT_FIELD_SETTING */,
'&ArgumentType': 0 /* OBJECT_FIELD_SETTING OBJECT_TYPE_FIELD_SETTING */,
'&ResultType': 0 /* OBJECT_FIELD_SETTING OBJECT_TYPE_FIELD_SETTING */,
'&InvokePriority': 0 /* OBJECT_FIELD_SETTING OBJECT_VALUE_SET_FIELD_SETTING */,
'&ResultPriority': 0 /* OBJECT_FIELD_SETTING OBJECT_VALUE_SET_FIELD_SETTING */,
'&returnResult': false /* OBJECT_FIELD_SETTING DEFAULT_OBJECT_FIELD_SETTING */,
'&synchronous': false /* OBJECT_FIELD_SETTING DEFAULT_OBJECT_FIELD_SETTING */,
};
/* eslint-enable */