aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-01-14 22:17:49 -0800
committerChris Lu <chris.lu@gmail.com>2021-01-14 22:17:49 -0800
commite1c7bc66f9a2f613df5eef55d6143f9b2a551cf3 (patch)
tree2041f98ed196f98457d4ffa3f46579833769d449
parent4aaa97c78995b2fb9df1d22f8bfa7340f20105e6 (diff)
downloadseaweedfs-e1c7bc66f9a2f613df5eef55d6143f9b2a551cf3.tar.xz
seaweedfs-e1c7bc66f9a2f613df5eef55d6143f9b2a551cf3.zip
change interface
-rw-r--r--weed/filer/filerstore.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/filerstore.go b/weed/filer/filerstore.go
index f1e6c6c35..a44d9b6d6 100644
--- a/weed/filer/filerstore.go
+++ b/weed/filer/filerstore.go
@@ -24,8 +24,8 @@ type FilerStore interface {
FindEntry(context.Context, util.FullPath) (entry *Entry, err error)
DeleteEntry(context.Context, util.FullPath) (err error)
DeleteFolderChildren(context.Context, util.FullPath) (err error)
- ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, error)
- ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int, prefix string) ([]*Entry, error)
+ ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, bool, error)
+ ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int, prefix string) ([]*Entry, bool, error)
BeginTransaction(ctx context.Context) (context.Context, error)
CommitTransaction(ctx context.Context) error