Fyne API "repository.DeleteAllRepository"

repository.DeleteAllRepository


import "fyne.io/fyne/v2/storage/repository"

Usage

type DeleteAllRepository

type DeleteAllRepository interface {
	WritableRepository

	// DeleteAll will be used to implement calls to storage.DeleteAll() for the
	// registered scheme of this repository.
	//
	// A generic implementation is provided by GenericDeleteAll().
	//
	// Since: 2.7
	DeleteAll(fyne.URI) error
}

DeleteAllRepository is an extension of the WritableRepository interface which also supports deleting a URI and all its children.

Since: 2.7