20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Microsoft Research Singularity
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// File: Libraries\Resiliency\IRecoveryAware.sg
|
|
//
|
|
// Note:
|
|
//
|
|
|
|
namespace Microsoft.Singularity.Resiliency
|
|
{
|
|
public interface IRecoveryAware
|
|
{
|
|
void NotifyRecovery();
|
|
void UpdateCheckpoint();
|
|
}
|
|
}
|