Implement SAGA Pattern commit and rollback.

This commit is contained in:
Ali CANLI
2022-07-14 15:45:32 +03:00
parent 1f68e35324
commit 22f85a86d8
40 changed files with 343 additions and 118 deletions

View File

@@ -0,0 +1,14 @@
package com.food.order.sysyem.event;
public final class EmptyEvent implements DomainEvent<Void> {
public static final EmptyEvent INSTANCE = new EmptyEvent();
private EmptyEvent() {
}
@Override
public void fire() {
}
}