2017-07-20 11:21:28 +02:00
|
|
|
|
namespace Umbraco.Core.Sync
|
2015-08-25 15:48:12 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The role of a server in an application environment.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public enum ServerRole : byte
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The server role is unknown.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Unknown = 0,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The server is the single server of a single-server environment.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Single = 1,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// In a multi-servers environment, the server is a slave server.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Slave = 2,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// In a multi-servers environment, the server is the master server.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Master = 3
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|