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
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| class TopicAliasRecv {
| aliasToTopic;
| max;
| length;
| constructor(max) {
| this.aliasToTopic = {};
| this.max = max;
| }
| put(topic, alias) {
| if (alias === 0 || alias > this.max) {
| return false;
| }
| this.aliasToTopic[alias] = topic;
| this.length = Object.keys(this.aliasToTopic).length;
| return true;
| }
| getTopicByAlias(alias) {
| return this.aliasToTopic[alias];
| }
| clear() {
| this.aliasToTopic = {};
| }
| }
| exports.default = TopicAliasRecv;
| //# sourceMappingURL=topic-alias-recv.js.map
|
|