File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace BitFaster.Caching.Lfu
1010 /// <typeparam name="K">The type of the Key</typeparam>
1111 /// <typeparam name="V">The type of the value</typeparam>
1212 [ DebuggerDisplay ( "Upd = {Updated}, Evict = {Evicted}" ) ]
13- public struct EventPolicy < K , V > : IEventPolicy < K , V >
13+ internal struct EventPolicy < K , V > : IEventPolicy < K , V >
1414 where K : notnull
1515 {
1616 private object eventSource ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace BitFaster.Caching.Lfu
66 /// </summary>
77 /// <typeparam name="K">The type of the key.</typeparam>
88 /// <typeparam name="V">The type of the value.</typeparam>
9- public interface IEventPolicy < K , V > : ICacheEvents < K , V >
9+ internal interface IEventPolicy < K , V > : ICacheEvents < K , V >
1010 where K : notnull
1111 {
1212 /// <summary>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace BitFaster.Caching.Lfu
99 /// </summary>
1010 /// <typeparam name="K">The type of the key.</typeparam>
1111 /// <typeparam name="V">The type of the value.</typeparam>
12- public struct NoEventPolicy < K , V > : IEventPolicy < K , V >
12+ internal struct NoEventPolicy < K , V > : IEventPolicy < K , V >
1313 where K : notnull
1414 {
1515 ///<inheritdoc/>
You can’t perform that action at this time.
0 commit comments