Exposed backing fields for StorageSystem.DiskBuilder

This commit is contained in:
nathan 2020-09-15 17:07:01 +02:00
parent 90e35d00bc
commit 6906106745

View File

@ -151,11 +151,11 @@ class StorageSystem {
@SuppressWarnings("unused") @SuppressWarnings("unused")
public static public static
class DiskBuilder implements StorageBuilder { class DiskBuilder implements StorageBuilder {
private File file; public File file;
private SerializationManager<?> serializationManager = new DefaultStorageSerializationManager(); // default public SerializationManager<?> serializationManager = new DefaultStorageSerializationManager(); // default
private boolean readOnly = false; public boolean readOnly = false;
private Logger logger = null; public Logger logger = null;
private long saveDelayInMilliseconds = 3000L; // default public long saveDelayInMilliseconds = 3000L; // default
/** /**
* Specify the file to write to on disk when saving objects * Specify the file to write to on disk when saving objects