Removes the DistributedCall section along with CacheRefresher and the ConfigServerRegistrar, changes IServerMessenger to not have any servers parameters since we don't use that.

This commit is contained in:
Shannon
2018-05-01 10:39:04 +10:00
parent 2afd257838
commit 1bdf064437
51 changed files with 166 additions and 1628 deletions

View File

@@ -9,14 +9,12 @@ namespace Umbraco.Core.Sync
/// </summary>
public sealed class RefreshInstructionEnvelope
{
public RefreshInstructionEnvelope(IEnumerable<IServerAddress> servers, ICacheRefresher refresher, IEnumerable<RefreshInstruction> instructions)
public RefreshInstructionEnvelope(ICacheRefresher refresher, IEnumerable<RefreshInstruction> instructions)
{
Servers = servers;
Refresher = refresher;
Instructions = instructions;
}
public IEnumerable<IServerAddress> Servers { get; set; }
public ICacheRefresher Refresher { get; set; }
public IEnumerable<RefreshInstruction> Instructions { get; set; }
}