@@ -115,7 +115,7 @@ public SynchronizedLinks(ISynchronization synchronization, ILinks<TLinkAddress>
115
115
/// <para></para>
116
116
/// </returns>
117
117
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
118
- public TLinkAddress Count ( IList < TLinkAddress > ? restriction ) => SyncRoot . ExecuteReadOperation ( restriction , Unsync . Count ) ;
118
+ public TLinkAddress Count ( IList < TLinkAddress > ? restriction ) => SyncRoot . DoRead ( restriction , Unsync . Count ) ;
119
119
120
120
/// <summary>
121
121
/// <para>
@@ -136,7 +136,7 @@ public SynchronizedLinks(ISynchronization synchronization, ILinks<TLinkAddress>
136
136
/// <para></para>
137
137
/// </returns>
138
138
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
139
- public TLinkAddress Each ( IList < TLinkAddress > ? restriction , ReadHandler < TLinkAddress > ? handler ) => SyncRoot . ExecuteReadOperation ( restriction , handler , Unsync . Each ) ;
139
+ public TLinkAddress Each ( IList < TLinkAddress > ? restriction , ReadHandler < TLinkAddress > ? handler ) => SyncRoot . DoRead ( restriction , handler , Unsync . Each ) ;
140
140
141
141
/// <summary>
142
142
/// <para>
@@ -153,7 +153,7 @@ public SynchronizedLinks(ISynchronization synchronization, ILinks<TLinkAddress>
153
153
/// <para></para>
154
154
/// </returns>
155
155
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
156
- public TLinkAddress Create ( IList < TLinkAddress > ? substitution , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . ExecuteWriteOperation ( substitution , handler , Unsync . Create ) ;
156
+ public TLinkAddress Create ( IList < TLinkAddress > ? substitution , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . DoWrite ( substitution , handler , Unsync . Create ) ;
157
157
158
158
/// <summary>
159
159
/// <para>
@@ -174,7 +174,7 @@ public SynchronizedLinks(ISynchronization synchronization, ILinks<TLinkAddress>
174
174
/// <para></para>
175
175
/// </returns>
176
176
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
177
- public TLinkAddress Update ( IList < TLinkAddress > ? restriction , IList < TLinkAddress > ? substitution , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . ExecuteWriteOperation ( restriction , substitution , handler , Unsync . Update ) ;
177
+ public TLinkAddress Update ( IList < TLinkAddress > ? restriction , IList < TLinkAddress > ? substitution , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . DoWrite ( restriction , substitution , handler , Unsync . Update ) ;
178
178
179
179
/// <summary>
180
180
/// <para>
@@ -187,7 +187,7 @@ public SynchronizedLinks(ISynchronization synchronization, ILinks<TLinkAddress>
187
187
/// <para></para>
188
188
/// </param>
189
189
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
190
- public TLinkAddress Delete ( IList < TLinkAddress > ? restriction , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . ExecuteWriteOperation ( restriction , handler , Unsync . Delete ) ;
190
+ public TLinkAddress Delete ( IList < TLinkAddress > ? restriction , WriteHandler < TLinkAddress > ? handler ) => SyncRoot . DoWrite ( restriction , handler , Unsync . Delete ) ;
191
191
192
192
//public T Trigger(IList<T> restriction, Func<IList<T>, IList<T>, T> matchedHandler, IList<T> substitution, Func<IList<T>, IList<T>, T> substitutedHandler)
193
193
//{
0 commit comments