Skip to content

Create CallHandler annotation for Proxy methods #20

@lidaamber

Description

@lidaamber

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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions