What is an Event Listener?

Asked 1 years ago, Updated 1 years ago, 291 views

What does event listener mean in C++?

When I read an SDK document, the following sentence appears, and what is the listener class?
I don't know for sure when I search for it, so I'm wondering if the keywords are different.If you have any idea, please let me know.

If you want to receive an event, write down what to do after it is received, and if it is C++, register the listener class.

c++

2022-11-01 19:30

1 Answers

There is no term for event listeners in C++'s language specification.

Generally speaking, an object that takes action on an event, but specifically what nature it is specifically depends on what the SDK looks like. It should be in the SDK documentation, so please read it.


2022-11-01 19:30

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.