• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2* Copyright (c) 2023 Hunan OpenValley Digital Industry Development Co., Ltd.
3* Licensed under the Apache License, Version 2.0 (the "License");
4* you may not use this file except in compliance with the License.
5* You may obtain a copy of the License at
6*
7*     http://www.apache.org/licenses/LICENSE-2.0
8*
9* Unless required by applicable law or agreed to in writing, software
10* distributed under the License is distributed on an "AS IS" BASIS,
11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12* See the License for the specific language governing permissions and
13* limitations under the License.
14*/
15
16export class Constant {
17  public static readonly EMITTER_ID_DEFAULT = 0x10000;
18  public static readonly EMITTER_ID_DEQUE = 0x10001;
19  public static readonly EMITTER_ID_HASH_MAP = 0x10002;
20  public static readonly EMITTER_ID_HASH_SET = 0x10003;
21  public static readonly EMITTER_ID_LIGHT_WEIGHT_MAP = 0x10004;
22  public static readonly EMITTER_ID_LIGHT_WEIGHT_SET = 0x10005;
23  public static readonly EMITTER_ID_LINKED_LIST = 0x10006;
24  public static readonly EMITTER_ID_LIST = 0x10007;
25  public static readonly EMITTER_ID_PLAIN_ARRAY = 0x10008;
26  public static readonly EMITTER_ID_QUEUE = 0x10009;
27  public static readonly EMITTER_ID_STACK = 0x10010;
28  public static readonly EMITTER_ID_TREE_MAP = 0x10011;
29  public static readonly EMITTER_ID_TREE_SET = 0x10012;
30  public static readonly EMITTER_ID_VECTOR = 0x10013;
31}