mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
948 B
27 lines
948 B
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
using System.IO;
|
|
|
|
namespace FASTER.core
|
|
{
|
|
/// <summary>
|
|
/// Log commit manager
|
|
/// </summary>
|
|
public interface ILogCommitManager
|
|
{
|
|
/// <summary>
|
|
/// Perform (synchronous) commit with specified metadata
|
|
/// </summary>
|
|
/// <param name="beginAddress">Committed begin address (for information only, not necessary to persist)</param>
|
|
/// <param name="untilAddress">Address committed until (for information only, not necessary to persist)</param>
|
|
/// <param name="commitMetadata">Commit metadata - should be persisted</param>
|
|
void Commit(long beginAddress, long untilAddress, byte[] commitMetadata);
|
|
|
|
/// <summary>
|
|
/// Return prior commit metadata during recovery
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
byte[] GetCommitMetadata();
|
|
}
|
|
} |