Package org.ngengine.platform
Interface VStore.VStoreBackend
-
- Enclosing class:
- VStore
public static interface VStore.VStoreBackend
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(java.lang.String path)booleanexists(java.lang.String path)java.util.List<java.lang.String>listAll()java.io.InputStreamread(java.lang.String path)java.io.OutputStreamwrite(java.lang.String path)
-
-
-
Method Detail
-
read
java.io.InputStream read(java.lang.String path) throws java.io.IOException- Throws:
java.io.IOException
-
write
java.io.OutputStream write(java.lang.String path) throws java.io.IOException- Throws:
java.io.IOException
-
exists
boolean exists(java.lang.String path) throws java.io.IOException- Throws:
java.io.IOException
-
delete
void delete(java.lang.String path) throws java.io.IOException- Throws:
java.io.IOException
-
listAll
java.util.List<java.lang.String> listAll() throws java.io.IOException- Throws:
java.io.IOException
-
-