本文整理汇总了C#中IQueueManager.AssociateIntegrationEvents方法的典型用法代码示例。如果您正苦于以下问题:C# IQueueManager.AssociateIntegrationEvents方法的具体用法?C# IQueueManager.AssociateIntegrationEvents怎么用?C# IQueueManager.AssociateIntegrationEvents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IQueueManager
的用法示例。
在下文中一共展示了IQueueManager.AssociateIntegrationEvents方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CruiseServer
/// <summary>
/// Initializes a new instance of the <see cref="CruiseServer" /> class.
/// </summary>
/// <param name="configurationService">The configuration service.</param>
/// <param name="projectIntegratorListFactory">The project integrator list factory.</param>
/// <param name="projectSerializer">The project serializer.</param>
/// <param name="stateManager">The state manager.</param>
/// <param name="fileSystem">The file system.</param>
/// <param name="executionEnvironment">The execution environment.</param>
/// <param name="extensionList">The extension list.</param>
/// <remarks></remarks>
public CruiseServer(IConfigurationService configurationService,
IProjectIntegratorListFactory projectIntegratorListFactory,
IProjectSerializer projectSerializer,
IProjectStateManager stateManager,
IFileSystem fileSystem,
IExecutionEnvironment executionEnvironment,
List<ExtensionConfiguration> extensionList)
{
this.configurationService = configurationService;
this.projectSerializer = projectSerializer;
this.fileSystem = fileSystem;
this.executionEnvironment = executionEnvironment;
// Leave the manager for backwards compatability - it is marked as obsolete
#pragma warning disable 0618
manager = new CruiseManager(this);
#pragma warning restore 0618
serverClient = new CruiseServerClient(this);
InitializeServerThread();
// Initialise the configuration
configuration = configurationService.Load();
// Initialise the queue manager
integrationQueueManager = IntegrationQueueManagerFactory.CreateManager(projectIntegratorListFactory, configuration, stateManager);
integrationQueueManager.AssociateIntegrationEvents(OnIntegrationStarted, OnIntegrationCompleted);
securityManager = configuration.SecurityManager;
// Load the extensions
if (extensionList != null)
{
InitialiseExtensions(extensionList);
}
this.configurationService.AddConfigurationUpdateHandler(Restart);
programmDataFolder = this.executionEnvironment.GetDefaultProgramDataFolder(ApplicationType.Server);
// Initialise the cache time
var cacheTimeInConfig = ConfigurationManager.AppSettings["cacheTime"];
if (string.IsNullOrEmpty(cacheTimeInConfig))
{
// Set the default cache time to five minutes
this.cacheTime = new TimeSpan(0, 5, 0);
Log.Info("Log cache time set to 5 minutes");
}
else
{
this.cacheTime = TimeSpan.FromSeconds(Convert.ToDouble(cacheTimeInConfig, CultureInfo.CurrentCulture));
if (this.cacheTime.TotalSeconds < 5)
{
// If the cache time is less then 5s then turn off caching
this.cacheTime = TimeSpan.MinValue;
Log.Info("Log cache has been turned off");
}
else
{
Log.Info("Log cache time set to " + this.cacheTime.TotalSeconds.ToString(CultureInfo.CurrentCulture) + " seconds");
}
}
}