Skip to content

Commit 3d0edae

Browse files
committedOct 16, 2024
changed: public actor to internal
1 parent 268dfb6 commit 3d0edae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Sources/DataLoader/DataLoader.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ private typealias LoaderQueue<Key: Hashable & Sendable, Value: Sendable> = [(key
1717
/// when used in long-lived applications or those which serve many users
1818
/// with different access permissions and consider creating a new instance
1919
/// per data request.
20-
public actor DataLoader<Key: Hashable & Sendable, Value: Sendable> {
20+
internal actor DataLoader<Key: Hashable & Sendable, Value: Sendable> {
2121
private let batchLoadFunction: BatchLoadFunction<Key, Value>
2222
private let options: DataLoaderOptions<Key, Value>
2323

0 commit comments

Comments
 (0)