Skip to content

Create EventHandler annotation for Proxy methods #19

@lidaamber

Description

@lidaamber

We should add an @EventHandler annotation for Proxy methods to process incoming events in the way like this:

@EventHandler
void onSomeEvent(List<?> args);
@EventHandler("eventName")
void onSomeEvent(List<?> args);
@EventHandler({"interfaceName", "eventName"})
void onSomeEvent(List<?> args);

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions