We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70e6cb7 commit c181e00Copy full SHA for c181e00
pkg/tree/entry.go
@@ -161,3 +161,16 @@ type EntryVisitor interface {
161
Visit(ctx context.Context, e Entry) error
162
Up()
163
}
164
+
165
+type LeafVariantEntry interface {
166
+ MarkDelete(onlyIntended bool)
167
+ GetEntry() Entry
168
+ String() string
169
+}
170
171
+type LeafVariantEntries interface {
172
+ MarkOwnerForDeletion(owner string, onlyIntended bool) *LeafEntry
173
+ GetHighestPrecedence(onlyNewOrUpdated bool, includeDefaults bool) *LeafEntry
174
+ GetRunning() *LeafEntry
175
+ DeleteByOwner(owner string) bool
176
0 commit comments