namespace Elsa.Workflows.Runtime;
///
/// Can be implemented by activities that need to do work after their bookmarks have been persisted.
///
public interface IBookmarksPersistedHandler
{
///
/// Invoked when bookmarks have been persisted.
///
ValueTask BookmarksPersistedAsync(ActivityExecutionContext context);
}