Interface VStore.VStoreBackend

  • Enclosing class:
    VStore

    public static interface VStore.VStoreBackend
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void delete​(java.lang.String path)  
      boolean exists​(java.lang.String path)  
      java.util.List<java.lang.String> listAll()  
      java.io.InputStream read​(java.lang.String path)  
      java.io.OutputStream write​(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