You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <see cref="Init(object[])"/> should be used instead of this if possible. This method can block the calling thread! It's lazy; it's initialized only when retrieving. <para/>
42
-
/// This can still be used with an async initialization func, but it will block on the func.
43
-
/// </summary>
44
-
/// <remarks>The initialization func needs to be set before calling this, either in the ctor or via the other methods</remarks>
Copy file name to clipboardExpand all lines: src/Abstract/IAsyncSingleton{T}.cs
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -41,16 +41,6 @@ public interface IAsyncSingleton<T> : IDisposable, IAsyncDisposable
41
41
[Pure]
42
42
TGetSync(object[]objects);
43
43
44
-
/// <summary>
45
-
/// <see cref="Get(object[])"/> should be used instead of this if possible. This method can block the calling thread! It's lazy; it's initialized only when retrieving. <para/>
46
-
/// This can still be used with an async initialization func, but it will block on the func.
47
-
/// </summary>
48
-
/// <remarks>The initialization func needs to be set before calling this, either in the ctor or via the other methods</remarks>
0 commit comments