]> gerrit.simantics Code Review - simantics/platform.git/blob - SizeChangeEvent.java
847bc49f7e2fe531b9f2f213d32aff8df6dde223
[simantics/platform.git] / SizeChangeEvent.java
1 package org.simantics.filesystem.services.sizetracker;
2
3 import java.nio.file.Path;
4
5 /**
6  * @author Tuukka Lehtonen
7  * @since 1.31.0
8  */
9 public interface SizeChangeEvent {
10
11         Path path();
12
13         long newSize();
14
15         long oldSize();
16
17 }