Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.apache.ignite.internal.util.typedef.F;

/**
* This exception is used to collect exceptions occured in {@link VerifyBackupPartitionsTask} execution.
* This exception is used to collect exceptions that occurred in {@link VerifyBackupPartitionsTask} execution.
*/
public class IdleVerifyException extends IgniteException {
/** */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void resetMetrics(
*
* @param name Metric name.
* @param rateTimeInterval New rate time interval.
* @throws IgniteException If some error occured.
* @throws IgniteException If some error occurred.
*/
@MXBeanDescription("Configure hitrate metric.")
public void configureHitRateMetric(
Expand All @@ -60,7 +60,7 @@ public void configureHitRateMetric(
*
* @param name Metric name.
* @param bounds New bounds.
* @throws IgniteException If some error occured.
* @throws IgniteException If some error occurred.
*/
@MXBeanDescription("Configure histogram metric.")
public void configureHistogramMetric(
Expand Down
8 changes: 4 additions & 4 deletions modules/platforms/dotnet/Apache.Ignite.Core/Cache/ICache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ public interface ICache<TK, TV> : IEnumerable<ICacheEntry<TK, TV>>
/// <param name="processor">The processor.</param>
/// <param name="arg">The argument.</param>
/// <returns>Result of the processing.</returns>
/// <exception cref="CacheEntryProcessorException">If an exception has occured during processing.</exception>
/// <exception cref="CacheEntryProcessorException">If an exception has occurred during processing.</exception>
TRes Invoke<TArg, TRes>(TK key, ICacheEntryProcessor<TK, TV, TArg, TRes> processor, TArg arg);

/// <summary>
Expand All @@ -851,7 +851,7 @@ public interface ICache<TK, TV> : IEnumerable<ICacheEntry<TK, TV>>
/// <param name="processor">The processor.</param>
/// <param name="arg">The argument.</param>
/// <returns>Result of the processing.</returns>
/// <exception cref="CacheEntryProcessorException">If an exception has occured during processing.</exception>
/// <exception cref="CacheEntryProcessorException">If an exception has occurred during processing.</exception>
Task<TRes> InvokeAsync<TArg, TRes>(TK key, ICacheEntryProcessor<TK, TV, TArg, TRes> processor, TArg arg);

/// <summary>
Expand All @@ -878,7 +878,7 @@ public interface ICache<TK, TV> : IEnumerable<ICacheEntry<TK, TV>>
/// defined by the <see cref="ICacheEntryProcessor{K,V,A,R}"/> implementation.
/// No mappings will be returned for processors that return a null value for a key.
/// </returns>
/// <exception cref="CacheEntryProcessorException">If an exception has occured during processing.</exception>
/// <exception cref="CacheEntryProcessorException">If an exception has occurred during processing.</exception>
ICollection<ICacheEntryProcessorResult<TK, TRes>> InvokeAll<TArg, TRes>(IEnumerable<TK> keys,
ICacheEntryProcessor<TK, TV, TArg, TRes> processor, TArg arg);

Expand Down Expand Up @@ -906,7 +906,7 @@ ICollection<ICacheEntryProcessorResult<TK, TRes>> InvokeAll<TArg, TRes>(IEnumera
/// defined by the <see cref="ICacheEntryProcessor{K,V,A,R}"/> implementation.
/// No mappings will be returned for processors that return a null value for a key.
/// </returns>
/// <exception cref="CacheEntryProcessorException">If an exception has occured during processing.</exception>
/// <exception cref="CacheEntryProcessorException">If an exception has occurred during processing.</exception>
Task<ICollection<ICacheEntryProcessorResult<TK, TRes>>> InvokeAllAsync<TArg, TRes>(IEnumerable<TK> keys,
ICacheEntryProcessor<TK, TV, TArg, TRes> processor, TArg arg);

Expand Down
Loading