类 ConfigFuzzyWatchChangeEvent

java.lang.Object
com.alibaba.nacos.api.config.listener.ConfigFuzzyWatchChangeEvent

public class ConfigFuzzyWatchChangeEvent extends Object
Represents a fuzzy listening configuration change event.

This event indicates that a change has occurred in a configuration that matches a fuzzy listening pattern.

作者:
stone-98
  • 方法详细资料

    • build

      public static ConfigFuzzyWatchChangeEvent build(String namespace, String group, String dataId, String changedType, String syncType)
      Constructs and returns a new FuzzyListenConfigChangeEvent with the specified parameters.
      参数:
      group - The group of the configuration that has changed
      dataId - The data ID of the configuration that has changed
      changedType - The type of change that has occurred
      返回:
      A new FuzzyListenConfigChangeEvent instance
    • getNamespace

      public String getNamespace()
    • getGroup

      public String getGroup()
    • getDataId

      public String getDataId()
    • getChangedType

      public String getChangedType()
    • getSyncType

      public String getSyncType()
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object