This is an automated email from the ASF dual-hosted git repository.

menghaoran pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.


    from 24d0709  Rename GaugeMetricsTracker.inc and dec (#6405) (#6422)
     new 42b7e86  Rename ShardingOrchestrationFacade to OrchestrationFacade
     new 0a263b6  Rename ShardingOrchestrationEventBus to OrchestrationEventBus
     new 64f9c83  Rename ShardingOrchestrationEvent to OrchestrationEvent
     new 3a2af12  Rename ShardingOrchestrationListener to OrchestrationListener
     new 39f1e9c  Rename ShardingOrchestrationListener to OrchestrationListener
     new 4b4a0cc  Merge pull request #6427 from terrymanu/dev

The 25825 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../cluster/facade/init/ClusterInitFacade.java     |  4 +-
 .../heartbeat/ClusterHeartbeatInstance.java        |  4 +-
 .../cluster/heartbeat/detect/HeartbeatHandler.java |  4 +-
 .../cluster/heartbeat/task/HeartbeatTask.java      |  4 +-
 .../cluster/state/ClusterStateInstance.java        | 10 ++---
 .../common/event/AuthenticationChangedEvent.java   |  2 +-
 .../event/ClusterConfigurationChangedEvent.java    |  2 +-
 .../core/common/event/DataSourceChangedEvent.java  |  2 +-
 .../core/common/event/EncryptRuleChangedEvent.java |  2 +-
 ...onEvent.java => IgnoredOrchestrationEvent.java} |  4 +-
 .../common/event/MasterSlaveRuleChangedEvent.java  |  2 +-
 .../event/MetricsConfigurationChangedEvent.java    |  2 +-
 ...estrationEvent.java => OrchestrationEvent.java} |  4 +-
 .../core/common/event/PropertiesChangedEvent.java  |  2 +-
 .../event/RuleConfigurationsChangedEvent.java      |  2 +-
 .../core/common/event/SchemaAddedEvent.java        |  2 +-
 .../core/common/event/SchemaDeletedEvent.java      |  2 +-
 .../core/common/event/ShadowRuleChangedEvent.java  |  2 +-
 ...ionEventBus.java => OrchestrationEventBus.java} | 14 +++----
 ...ionListener.java => OrchestrationListener.java} |  4 +-
 .../PostShardingCenterRepositoryEventListener.java | 16 ++++----
 ...est.java => IgnoredOrchestrationEventTest.java} |  6 +--
 ...BusTest.java => OrchestrationEventBusTest.java} |  4 +-
 ...tShardingCenterRepositoryEventListenerTest.java | 10 ++---
 .../listener/AuthenticationChangedListener.java    |  2 +-
 .../ClusterConfigurationChangedListener.java       |  2 +-
 .../MetricsConfigurationChangedListener.java       |  2 +-
 .../config/listener/PropertiesChangedListener.java |  2 +-
 .../config/listener/SchemaChangedListener.java     | 26 ++++++------
 .../AuthenticationChangedListenerTest.java         |  4 +-
 .../ClusterConfigurationChangedListenerTest.java   |  4 +-
 .../MetricsConfigurationChangedListenerTest.java   |  4 +-
 .../listener/PropertiesChangedListenerTest.java    |  4 +-
 .../config/listener/SchemaChangedListenerTest.java | 48 +++++++++++-----------
 ...trationFacade.java => OrchestrationFacade.java} | 18 ++++----
 ...ager.java => OrchestrationListenerManager.java} | 12 +++---
 ...acadeTest.java => OrchestrationFacadeTest.java} | 40 +++++++++---------
 ....java => OrchestrationListenerManagerTest.java} | 15 ++++---
 .../core/metadata/event/MetaDataChangedEvent.java  |  4 +-
 .../metadata/listener/MetaDataChangedListener.java |  4 +-
 .../listener/MetaDataChangedListenerTest.java      |  4 +-
 .../registry/event/CircuitStateChangedEvent.java   |  4 +-
 .../registry/event/DisabledStateChangedEvent.java  |  4 +-
 .../listener/DataSourceStateChangedListener.java   |  2 +-
 .../listener/InstanceStateChangedListener.java     |  2 +-
 .../DataSourceStateChangedListenerTest.java        |  4 +-
 .../listener/InstanceStateChangedListenerTest.java |  8 ++--
 .../core/schema/OrchestrationSchemaContexts.java   | 12 +++---
 .../OrchestrationShardingSphereDataSource.java     | 44 ++++++++++----------
 .../OrchestrationConfigurationConverter.java       | 44 ++++++++++----------
 .../ProxyOrchestrationSchemaContextsTest.java      | 21 +++++-----
 51 files changed, 225 insertions(+), 225 deletions(-)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{IgnoredShardingOrchestrationEvent.java
 => IgnoredOrchestrationEvent.java} (86%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ShardingOrchestrationEvent.java
 => OrchestrationEvent.java} (91%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/eventbus/{ShardingOrchestrationEventBus.java
 => OrchestrationEventBus.java} (77%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/listener/{ShardingOrchestrationListener.java
 => OrchestrationListener.java} (93%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/test/java/org/apache/shardingsphere/orchestration/core/common/event/{IgnoredShardingOrchestrationEventTest.java
 => IgnoredOrchestrationEventTest.java} (80%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/test/java/org/apache/shardingsphere/orchestration/core/common/eventbus/{ShardingOrchestrationEventBusTest.java
 => OrchestrationEventBusTest.java} (86%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-facade/src/main/java/org/apache/shardingsphere/orchestration/core/facade/{ShardingOrchestrationFacade.java
 => OrchestrationFacade.java} (94%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-facade/src/main/java/org/apache/shardingsphere/orchestration/core/facade/listener/{ShardingOrchestrationListenerManager.java
 => OrchestrationListenerManager.java} (79%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-facade/src/test/java/org/apache/shardingsphere/orchestration/core/facade/{ShardingOrchestrationFacadeTest.java
 => OrchestrationFacadeTest.java} (81%)
 rename 
shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-facade/src/test/java/org/apache/shardingsphere/orchestration/core/facade/{ShardingOrchestrationListenerManagerTest.java
 => OrchestrationListenerManagerTest.java} (84%)

Reply via email to