Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create CallHandler annotation for Proxy methods #20

Open
lidaamber opened this issue May 26, 2017 · 1 comment
Open

Create CallHandler annotation for Proxy methods #20

lidaamber opened this issue May 26, 2017 · 1 comment

Comments

@lidaamber
Copy link
Member

lidaamber commented May 26, 2017

We should add a @CallHandler annotation for Proxy methods to process incoming calls in the way like this:

@CallHandler
void onMethodCalled(List<?> args);
@CallHandler("methodName")
void onMethodCalled(List<?> args);
@CallHandler({"interfaceName", "methodName"})
void onMethodCalled(List<?> args);

With this annotation the generated class for Proxy should be abstract, so that the User'll later implement handlers for methods with @CallHandler annotation.

@lundibundi
Copy link
Member

see #19 (comment).

@lundibundi lundibundi self-assigned this May 29, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants