#113 Event Driven Architecture

- added class diagram
- added more comments
This commit is contained in:
chris
2015-11-23 11:20:20 +01:00
parent b4aeca3aa0
commit 321e9d4191
22 changed files with 123 additions and 158 deletions

View File

@@ -0,0 +1,9 @@
package com.iluwatar.eda.event;
import com.iluwatar.eda.framework.Message;
public class Event implements Message {
public Class<? extends Message> getType() {
return getClass();
}
}