fix: Initial state fix - fetch data and block executions until completed
This commit is contained in:
parent
1afff3819b
commit
82bf6b55cc
6 changed files with 72 additions and 9 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue