This commit is contained in:
Pascal Borreli 2018-11-06 19:37:32 +00:00 коммит произвёл Badrish Chandramouli
Родитель 5005073c81
Коммит 4f6c02339c
6 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -74,7 +74,7 @@ namespace ManagedSampleCore
/// Atomic read-modify-write operation
/// </summary>
/// <param name="key">Key of read</param>
/// <param name="input">Input argument used by RMW callback to perfom operation</param>
/// <param name="input">Input argument used by RMW callback to perform operation</param>
/// <param name="context">User context to identify operation in asynchronous callback</param>
/// <param name="lsn">Increasing sequence number of operation (used for recovery)</param>
/// <returns>Status of operation</returns>

Просмотреть файл

@ -74,7 +74,7 @@ namespace ManagedSampleCore
/// Atomic read-modify-write operation
/// </summary>
/// <param name="key">Key of read</param>
/// <param name="input">Input argument used by RMW callback to perfom operation</param>
/// <param name="input">Input argument used by RMW callback to perform operation</param>
/// <param name="context">User context to identify operation in asynchronous callback</param>
/// <param name="lsn">Increasing sequence number of operation (used for recovery)</param>
/// <returns>Status of operation</returns>

Просмотреть файл

@ -76,7 +76,7 @@ namespace FASTER.core
/// Atomic read-modify-write operation
/// </summary>
/// <param name="key">Key of read</param>
/// <param name="input">Input argument used by RMW callback to perfom operation</param>
/// <param name="input">Input argument used by RMW callback to perform operation</param>
/// <param name="context">User context to identify operation in asynchronous callback</param>
/// <param name="lsn">Increasing sequence number of operation (used for recovery)</param>
/// <returns>Status of operation</returns>

Просмотреть файл

@ -144,7 +144,7 @@ namespace FASTER.core
/// <typeparam name="TContext">Context type</typeparam>
/// <typeparam name="TFunctions">Callback Functions</typeparam>
/// <typeparam name="TIFaster">Interface of returned FASTER instance</typeparam>
/// <param name="indexSizeBuckets">Numer of buckets</param>
/// <param name="indexSizeBuckets">Number of buckets</param>
/// <param name="logSettings">Log Settings</param>
/// <param name="checkpointSettings">Checkpoint settings</param>
/// <returns>Instance of FASTER</returns>
@ -179,7 +179,7 @@ namespace FASTER.core
/// <typeparam name="TOutput">Output type</typeparam>
/// <typeparam name="TContext">Context type</typeparam>
/// <typeparam name="TFunctions">Callback Functions</typeparam>
/// <param name="indexSizeBuckets">Numer of buckets</param>
/// <param name="indexSizeBuckets">Number of buckets</param>
/// <param name="functions">Instance of functions</param>
/// <param name="logSettings">Log parameters</param>
/// <param name="checkpointSettings">Checkpoint settings</param>

Просмотреть файл

@ -72,7 +72,7 @@ namespace FASTER.core
/// Atomic read-modify-write operation
/// </summary>
/// <param name="key">Key of read</param>
/// <param name="input">Input argument used by RMW callback to perfom operation</param>
/// <param name="input">Input argument used by RMW callback to perform operation</param>
/// <param name="context">User context to identify operation in asynchronous callback</param>
/// <param name="lsn">Increasing sequence number of operation (used for recovery)</param>
/// <returns>Status of operation</returns>

Просмотреть файл

@ -56,7 +56,7 @@ namespace FASTER.core
/// Initial value for RMW
/// </summary>
/// <param name="key">Key</param>
/// <param name="input">Input used as pameter to RMW</param>
/// <param name="input">Input used as parameter to RMW</param>
/// <param name="value">Value being initialized</param>
void InitialUpdater(K key, I input, ref V value);
@ -64,7 +64,7 @@ namespace FASTER.core
/// In-place update for RMW
/// </summary>
/// <param name="key">Key</param>
/// <param name="input">Input used as pameter to RMW</param>
/// <param name="input">Input used as parameter to RMW</param>
/// <param name="value">Value being updated in-place</param>
void InPlaceUpdater(K key, I input, ref V value);
@ -72,7 +72,7 @@ namespace FASTER.core
/// Copy-update for RMW
/// </summary>
/// <param name="key">Key</param>
/// <param name="input">Input used as pameter to RMW</param>
/// <param name="input">Input used as parameter to RMW</param>
/// <param name="oldValue">Old value to be updated</param>
/// <param name="newValue">New value after update</param>
void CopyUpdater(K key, I input, V oldValue, ref V newValue);