fix: Initial state fix - fetch data and block executions until completed

This commit is contained in:
Piotr Dec 2024-07-18 21:15:06 +02:00
parent 1afff3819b
commit 82bf6b55cc
Signed by: stawros
GPG key ID: F89F27AD8F881A91
6 changed files with 72 additions and 9 deletions

View file

@ -1,5 +1,11 @@
package eu.ztsh.lfr.model.events;
public record FileModifiedEvent(long timestamp) {
import org.springframework.context.ApplicationEvent;
public class FileModifiedEvent extends ApplicationEvent {
public FileModifiedEvent(Object source) {
super(source);
}
}