namespace ZelWiki.Engine.Library.Interfaces { /// /// Handles wiki completion events. /// public interface ICompletionHandler { /// /// Handles wiki completion events. Is called when the wiki processing competes for a given page. /// /// Reference to the wiki state object public void Complete(IZelEngineState state); } }