We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9415923 commit 4f4fc68Copy full SHA for 4f4fc68
src/main/java/custom/application/v1/SessionCreated.java
@@ -0,0 +1,19 @@
1
+package custom.application.v1;
2
+
3
+import org.tinystruct.system.Event;
4
5
+public class SessionCreated implements Event<String> {
6
+ String meetingCode;
7
+ public SessionCreated(String meetingCode){
8
+ this.meetingCode = meetingCode;
9
+ }
10
+ @Override
11
+ public String getName() {
12
+ return "";
13
14
15
16
+ public String getPayload() {
17
+ return "New meeting generated:" + meetingCode;
18
19
+}
0 commit comments