8000 Create CallHandler annotation for Proxy methods · Issue #20 · metarhia/jstp-java · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Create CallHandler annotation for Proxy methods #20
Open
@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

    0