What is events in Otto and are there types of events that could be published using OTTO?

StackOverflow https://stackoverflow.com/questions/20627544

  •  02-09-2022
  •  | 
  •  

문제

Iam just a bit confused with what type of events can be published through OTTO. and a example of event class will be really helpful. Thanks

도움이 되었습니까?

해결책

You can publish any objects. Check the Otto home page. There you see an example where AnswerAvailableEvent event gets published. Event class can look like this.

public class AnswerAvailableEvent {
    private int answer;

    public AnswerAvailableEvent(int answer) {
      this.answer = answer;
    }

    public int getAnswer() {
      return answer;
    }
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top