using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// Represents an operation that schedules continuations when it completes.
// Token: 0x0200055D RID: 1373
[Token(Token = "0x200055D")]
public interface INotifyCompletion
{
/// Schedules the continuation action that's invoked when the instance completes.
/// The action to invoke when the operation completes.
/// The argument is null (Nothing in Visual Basic).
// Token: 0x06002C3F RID: 11327
[Token(Token = "0x6002C3F")]
[Address(Slot = "0")]
void OnCompleted(Action continuation);
}
}