-
-
Notifications
You must be signed in to change notification settings - Fork 749
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4003717
commit 30efe91
Showing
51 changed files
with
1,743 additions
and
11,526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#if NET6_0_OR_GREATER | ||
namespace GreenDonut; | ||
|
||
/// <summary> | ||
/// Creates a branched DataLoader with a specific branch key. | ||
/// </summary> | ||
/// <typeparam name="TKey"> | ||
/// The type of the DataLoader key. | ||
/// </typeparam> | ||
/// <typeparam name="TValue"> | ||
/// The type of the DataLoader value. | ||
/// </typeparam> | ||
/// <typeparam name="TState"> | ||
/// The custom state that is passed into the factory. | ||
/// </typeparam> | ||
public delegate IDataLoader CreateDataLoaderBranch<out TKey, TValue, in TState>( | ||
string branchKey, | ||
IDataLoader<TKey, TValue> dataLoader, | ||
TState state) | ||
where TKey : notnull; | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.