forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polish apache#4104 : To add initialized and destroyed events for Refe…
…renceConfig
- Loading branch information
1 parent
737da2b
commit 839f7a3
Showing
4 changed files
with
162 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...config-api/src/main/java/org/apache/dubbo/config/event/ReferenceConfigDestroyedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.config.event; | ||
|
||
import org.apache.dubbo.config.ReferenceConfig; | ||
import org.apache.dubbo.config.annotation.Reference; | ||
import org.apache.dubbo.event.Event; | ||
|
||
/** | ||
* The {@link ReferenceConfig Dubbo service ReferenceConfig} destroyed {@link Event event} | ||
* | ||
* @see Reference | ||
* @see ReferenceConfig#destroy() | ||
* @see Event | ||
* @since 2.7.2 | ||
*/ | ||
public class ReferenceConfigDestroyedEvent extends Event { | ||
|
||
public ReferenceConfigDestroyedEvent(ReferenceConfig referenceConfig) { | ||
super(referenceConfig); | ||
} | ||
|
||
public ReferenceConfig getReferenceConfig() { | ||
return (ReferenceConfig) getSource(); | ||
} | ||
|
||
} |
48 changes: 48 additions & 0 deletions
48
...nfig-api/src/main/java/org/apache/dubbo/config/event/ReferenceConfigInitializedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.config.event; | ||
|
||
import org.apache.dubbo.config.ReferenceConfig; | ||
import org.apache.dubbo.config.annotation.Reference; | ||
import org.apache.dubbo.event.Event; | ||
import org.apache.dubbo.rpc.Invoker; | ||
|
||
/** | ||
* The {@link ReferenceConfig Dubbo service ReferenceConfig} initialized {@link Event event} | ||
* | ||
* @see Reference | ||
* @see ReferenceConfig#get() | ||
* @see Event | ||
* @since 2.7.2 | ||
*/ | ||
public class ReferenceConfigInitializedEvent extends Event { | ||
|
||
private final Invoker<?> invoker; | ||
|
||
public ReferenceConfigInitializedEvent(ReferenceConfig referenceConfig, Invoker<?> invoker) { | ||
super(referenceConfig); | ||
this.invoker = invoker; | ||
} | ||
|
||
public ReferenceConfig getReferenceConfig() { | ||
return (ReferenceConfig) getSource(); | ||
} | ||
|
||
public Invoker<?> getInvoker() { | ||
return invoker; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters