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

Will the framework have an event monitoring mechanism? #4021

Open
806572349 opened this issue Dec 9, 2024 · 1 comment
Open

Will the framework have an event monitoring mechanism? #4021

806572349 opened this issue Dec 9, 2024 · 1 comment
Labels
discuss We need discuss to make decision. feature inactive

Comments

@806572349
Copy link

Is your feature request related to a problem?

Option Yes

Describe the solution you'd like

An event driven mechanism based on observer mode is provided to achieve decoupled communication between internal components of an application. It allows different components to communicate with each other through publishing and subscribing to events without directly referencing or understanding each other's specific implementations

like this in Java Spring

Publisher:
context.PublishEvent(xxxxx);

Listener:
public void onApplicationEvent(DemoEvent demoEvent) {
System.out.println(">>>>>>>>>>>>>>>>>>>>DemoListener2>>>>>>>>>>>>>>>>>");
}

Describe alternatives you've considered

m

Additional

No response

@gqcn gqcn added the discuss We need discuss to make decision. label Dec 10, 2024
@gqcn
Copy link
Member

gqcn commented Dec 10, 2024

@806572349 We have no such plan yet, but you can use channel to achieve this feature conveniently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
discuss We need discuss to make decision. feature inactive
Projects
None yet
Development

No branches or pull requests

2 participants