* Migrated database server registrar and messenger tasks into hosted services. Moved DatabaseServerRegistrar Options into injectable configuration. * Added further cases for unit tests on hosted services checking execution based on runtime level. * Migrated DatabaseServerMessengerOptions into configuration.
13 lines
377 B
C#
13 lines
377 B
C#
namespace Umbraco.Core.Sync
|
|
{
|
|
/// <summary>
|
|
/// An <see cref="IServerMessenger"/> implementation that works by storing messages in the database.
|
|
/// </summary>
|
|
public interface IBatchedDatabaseServerMessenger : IDatabaseServerMessenger
|
|
{
|
|
void FlushBatch();
|
|
DatabaseServerMessengerCallbacks Callbacks { get; }
|
|
void Startup();
|
|
}
|
|
}
|