GitHub user wenlong88 opened a pull request:
https://github.com/apache/flink/pull/2401
[FLInk-4443][rpc] Add support in RpcCompletenessTest for inheritance of
RpcGateway and RpcEndpoint
adding support for RpcCompletenessTest needs to support RpcGateway which is
composited by some basic functions like following:
```
public interface ExecutionStateListener extends RpcGateway {
public void notifyExecutionStateChanges();
}
public interface JobStateListener extends RpcGateway {
public void notifyJobStateChanges();
}
public interface JobWatcher extends ExecutionStateListener,
JobStateListener, RpcGateway {
}
public class JobWatcherEndpoint extends RpcEndpoint<JobWatcher> {
protected JobWatcherEndpoint(RpcService rpcService) {
super(rpcService);
}
@RpcMethod
public void notifyExecutionStateChanges() {
}
@RpcMethod
public void notifyJobStateChanges() {
}
}
public class AttachedJobClient extends JobWatcherEndpoint {
protected JobClient(RpcService rpcService) {
super(rpcService);
}
}
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/alibaba/flink flink-4443
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/flink/pull/2401.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2401
----
commit 83b46df346d3626aa15f690c449d17fe3218014e
Author: wenlong.lwl <[email protected]>
Date: 2016-08-20T16:46:51Z
add support for rpc gateway and rpc endpoint inheritance
commit b471bd249fbc40a23c6d32e5840c5ab95d693f75
Author: wenlong.lwl <[email protected]>
Date: 2016-08-22T05:33:33Z
update comments
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---