Removes ctor's accepting delegates and instead makes them abstract methods, adds some docs

This commit is contained in:
Shannon
2015-03-27 10:25:25 +11:00
parent e001ed93c1
commit c73749ea54
5 changed files with 49 additions and 44 deletions

View File

@@ -8,6 +8,12 @@ using Umbraco.Web.Routing;
namespace Umbraco.Web
{
/// <summary>
/// An <see cref="IServerMessenger"/> implementation that works by storing messages in the database.
/// </summary>
/// <remarks>
/// This binds to appropriate umbraco events in order to trigger the Boot(), Sync() & FlushBatch() calls
/// </remarks>
public class BatchedDatabaseServerMessenger : Core.Sync.BatchedDatabaseServerMessenger
{
public BatchedDatabaseServerMessenger(ApplicationContext appContext, bool enableDistCalls, DatabaseServerMessengerOptions options)