In GWT-platform, what is the different between Action and Event?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think the concepts of event is a bit wider than action.
Each action can be associated with some event but an action isn’t necessarily for a occurrence of defined event.
An action is any action of the user. And an event is a result of user action (UI event) or performing of some conditions (other event).
For example, a user did the action
press button. This action can be associated with an eventbutton was pressed. And for example, a eventexpiration of user sessiondoesn’t require any action.But these terms are very similar in meaning for GWT and I suppose sometimes many developers use they interchangeably.