-
Notifications
You must be signed in to change notification settings - Fork 16
/
variables-with-time.ts
53 lines (40 loc) · 1.84 KB
/
variables-with-time.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
import * as flatbuffers from 'flatbuffers';
import { VariableWithValues } from './variable-with-values.js';
export class VariablesWithTime {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):VariablesWithTime {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsVariablesWithTime(bb:flatbuffers.ByteBuffer, obj?:VariablesWithTime):VariablesWithTime {
return (obj || new VariablesWithTime()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsVariablesWithTime(bb:flatbuffers.ByteBuffer, obj?:VariablesWithTime):VariablesWithTime {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new VariablesWithTime()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
time():bigint {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.readInt64(this.bb_pos + offset) : BigInt('0');
}
timeEnd():bigint {
const offset = this.bb!.__offset(this.bb_pos, 6);
return offset ? this.bb!.readInt64(this.bb_pos + offset) : BigInt('0');
}
interval():number {
const offset = this.bb!.__offset(this.bb_pos, 8);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : 0;
}
variables(index: number, obj?:VariableWithValues):VariableWithValues|null {
const offset = this.bb!.__offset(this.bb_pos, 10);
return offset ? (obj || new VariableWithValues()).__init(this.bb!.__indirect(this.bb!.__vector(this.bb_pos + offset) + index * 4), this.bb!) : null;
}
variablesLength():number {
const offset = this.bb!.__offset(this.bb_pos, 10);
return offset ? this.bb!.__vector_len(this.bb_pos + offset) : 0;
}
}