Interface ResourceStore

  • All Known Implementing Classes:
    MemoryResourceStore

    public interface ResourceStore
    A Store is where the compilers are storing the results
    • Method Detail

      • write

        void write​(KiePath resourcePath,
                   byte[] pResourceData)
      • write

        default void write​(String resourceName,
                           byte[] pResourceData)
      • write

        void write​(KiePath resourcePath,
                   byte[] pResourceData,
                   boolean createFolder)
      • write

        default void write​(String resourceName,
                           byte[] pResourceData,
                           boolean createFolder)
      • read

        byte[] read​(KiePath resourcePath)
      • read

        default byte[] read​(String resourceName)
      • remove

        void remove​(KiePath resourcePath)
      • remove

        default void remove​(String resourceName)