Enum ThreadName

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ThreadName>

    public enum ThreadName
    extends java.lang.Enum<ThreadName>
    • Enum Constant Detail

      • CLIENT_RPC_SERVICE

        public static final ThreadName CLIENT_RPC_SERVICE
      • CLIENT_RPC_PROCESSOR

        public static final ThreadName CLIENT_RPC_PROCESSOR
      • CONFIGNODE_RPC_SERVICE

        public static final ThreadName CONFIGNODE_RPC_SERVICE
      • CONFIGNODE_RPC_PROCESSOR

        public static final ThreadName CONFIGNODE_RPC_PROCESSOR
      • IOT_CONSENSUS_RPC_SERVICE

        public static final ThreadName IOT_CONSENSUS_RPC_SERVICE
      • IOT_CONSENSUS_RPC_PROCESSOR

        public static final ThreadName IOT_CONSENSUS_RPC_PROCESSOR
      • MPP_DATA_EXCHANGE_RPC_SERVICE

        public static final ThreadName MPP_DATA_EXCHANGE_RPC_SERVICE
      • MPP_DATA_EXCHANGE_RPC_PROCESSOR

        public static final ThreadName MPP_DATA_EXCHANGE_RPC_PROCESSOR
      • DATANODE_INTERNAL_RPC_SERVICE

        public static final ThreadName DATANODE_INTERNAL_RPC_SERVICE
      • DATANODE_INTERNAL_RPC_PROCESSOR

        public static final ThreadName DATANODE_INTERNAL_RPC_PROCESSOR
      • INFLUXDB_RPC_SERVICE

        public static final ThreadName INFLUXDB_RPC_SERVICE
      • INFLUXDB_RPC_PROCESSOR

        public static final ThreadName INFLUXDB_RPC_PROCESSOR
      • STORAGE_ENGINE_CACHED_SERVICE

        public static final ThreadName STORAGE_ENGINE_CACHED_SERVICE
      • FLUSH_SERVICE

        public static final ThreadName FLUSH_SERVICE
      • FLUSH_SUB_TASK_SERVICE

        public static final ThreadName FLUSH_SUB_TASK_SERVICE
      • FLUSH_TASK_SUBMIT

        public static final ThreadName FLUSH_TASK_SUBMIT
      • COMPACTION_SERVICE

        public static final ThreadName COMPACTION_SERVICE
      • COMPACTION_SUB_SERVICE

        public static final ThreadName COMPACTION_SUB_SERVICE
      • COMPACTION_SCHEDULE

        public static final ThreadName COMPACTION_SCHEDULE
      • WAL_SERIALIZE

        public static final ThreadName WAL_SERIALIZE
      • WAL_SYNC

        public static final ThreadName WAL_SYNC
      • WAL_DELETE

        public static final ThreadName WAL_DELETE
      • WAL_RECOVER

        public static final ThreadName WAL_RECOVER
      • SYNC_CLIENT

        public static final ThreadName SYNC_CLIENT
      • SYNC_SERVER

        public static final ThreadName SYNC_SERVER
      • QUERY_SERVICE

        public static final ThreadName QUERY_SERVICE
      • INSERTION_SERVICE

        public static final ThreadName INSERTION_SERVICE
      • WINDOW_EVALUATION_SERVICE

        public static final ThreadName WINDOW_EVALUATION_SERVICE
      • TTL_CHECK_SERVICE

        public static final ThreadName TTL_CHECK_SERVICE
      • TIMED_FLUSH_SEQ_MEMTABLE

        public static final ThreadName TIMED_FLUSH_SEQ_MEMTABLE
      • TIMED_FLUSH_UNSEQ_MEMTABLE

        public static final ThreadName TIMED_FLUSH_UNSEQ_MEMTABLE
      • SETTLE_SERVICE

        public static final ThreadName SETTLE_SERVICE
      • SYNC_SENDER_PIPE

        public static final ThreadName SYNC_SENDER_PIPE
      • SYNC_SENDER_HEARTBEAT

        public static final ThreadName SYNC_SENDER_HEARTBEAT
      • SYNC_RECEIVER_COLLECTOR

        public static final ThreadName SYNC_RECEIVER_COLLECTOR
      • CONTINUOUS_QUERY_SERVICE

        public static final ThreadName CONTINUOUS_QUERY_SERVICE
      • EXT_PIPE_PLUGIN_WORKER

        public static final ThreadName EXT_PIPE_PLUGIN_WORKER
      • ASYNC_DATANODE_CLIENT_POOL

        public static final ThreadName ASYNC_DATANODE_CLIENT_POOL
      • ASYNC_CONFIGNODE_HEARTBEAT_CLIENT_POOL

        public static final ThreadName ASYNC_CONFIGNODE_HEARTBEAT_CLIENT_POOL
      • ASYNC_DATANODE_HEARTBEAT_CLIENT_POOL

        public static final ThreadName ASYNC_DATANODE_HEARTBEAT_CLIENT_POOL
      • ASYNC_CONFIGNODE_CLIENT_POOL

        public static final ThreadName ASYNC_CONFIGNODE_CLIENT_POOL
      • ASYNC_DATANODE_MPP_DATA_EXCHANGE_CLIENT_POOL

        public static final ThreadName ASYNC_DATANODE_MPP_DATA_EXCHANGE_CLIENT_POOL
      • ASYNC_DATANODE_IOT_CONSENSUS_CLIENT_POOL

        public static final ThreadName ASYNC_DATANODE_IOT_CONSENSUS_CLIENT_POOL
      • SCHEMA_REGION_RELEASE_PROCESSOR

        public static final ThreadName SCHEMA_REGION_RELEASE_PROCESSOR
      • SCHEMA_RELEASE_MONITOR

        public static final ThreadName SCHEMA_RELEASE_MONITOR
      • SCHEMA_REGION_FLUSH_PROCESSOR

        public static final ThreadName SCHEMA_REGION_FLUSH_PROCESSOR
      • SCHEMA_FLUSH_MONITOR

        public static final ThreadName SCHEMA_FLUSH_MONITOR
    • Method Detail

      • values

        public static ThreadName[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ThreadName c : ThreadName.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ThreadName valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()