From c1bbb274baa4b6d8530156799b33a2e6a2a256dc Mon Sep 17 00:00:00 2001 From: "tgstation-server-ci[bot]" <161980869+tgstation-server-ci[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 03:13:06 +0000 Subject: [PATCH] Deploy code docs to GitHub Pages for workflow run 3616 Commit: 136224a05af3956d7c0d4a4b5648700ee30d6013 --- _api_headers_8cs_source.html | 2 +- _application_8cs_source.html | 465 +++---- _basic_watchdog_8cs_source.html | 6 +- _error_message_filter_8cs_source.html | 2 +- _event_type_8cs.html | 2 + _event_type_8cs_source.html | 8 +- _instance_factory_8cs_source.html | 2 +- _session_controller_factory_8cs_source.html | 1154 +++++++++-------- _watchdog_8cs_source.html | 556 ++++---- _watchdog_base_8cs_source.html | 2 +- _web_host_builder_extensions_8cs_source.html | 11 +- architecture.html | 2 +- changelog.yml | 18 +- ...on_1_1_server_1_1_api_1_1_api_headers.html | 2 +- ...1_1_api_1_1_models_1_1_engine_version.html | 2 +- ...rver_1_1_api_1_1_models_1_1_entity_id.html | 2 +- ...1_models_1_1_internal_1_1_compile_job.html | 4 +- ...al_1_1_dream_daemon_launch_parameters.html | 12 +- ...station_1_1_server_1_1_api_1_1_routes.html | 6 +- ...t_1_1_components_1_1_instance_factory.html | 2 +- ...nts_1_1_interop_1_1_d_m_api_constants.html | 8 +- ..._1_1_session_1_1_reattach_information.html | 6 +- ...ession_1_1_session_controller_factory.html | 979 +++++++------- ...nents_1_1_watchdog_1_1_basic_watchdog.html | 8 +- ...onents_1_1_watchdog_1_1_watchdog_base.html | 2 +- ...nfiguration_1_1_general_configuration.html | 2 +- ...nfiguration_1_1_session_configuration.html | 4 +- ...trollers_1_1_control_panel_controller.html | 2 +- ...host_1_1_core_1_1_application-members.html | 2 +- ...ver_1_1_host_1_1_core_1_1_application.html | 451 +++---- ..._1_1_extensions_1_1_socket_extensions.html | 2 +- ..._1_graph_q_l_1_1_error_message_filter.html | 2 +- ..._models_1_1_reattach_information_base.html | 6 +- ...perties_1_1_master_versions_attribute.html | 4 +- ...t_1_1_utils_1_1_swagger_configuration.html | 2 +- ...er_1_1_host_1_1_watchdog_1_1_watchdog.html | 548 ++++---- functions_c.html | 2 +- functions_func_c.html | 2 +- ...omponents_1_1_chat_1_1_i_chat_manager.html | 2 +- ...nts_1_1_deployment_1_1_i_dmb_provider.html | 8 +- ..._1_1_engine_1_1_i_engine_installation.html | 8 +- ...nents_1_1_engine_1_1_i_engine_manager.html | 2 +- ...nents_1_1_events_1_1_i_event_consumer.html | 2 +- ...1_1_components_1_1_i_instance_manager.html | 2 +- ..._1_session_1_1_i_topic_client_factory.html | 2 +- ...t_1_1_core_1_1_i_server_port_provider.html | 2 +- ...er_1_1_host_1_1_i_o_1_1_i_i_o_manager.html | 10 +- ...1_1_security_1_1_i_cryptography_suite.html | 2 +- ...host_1_1_security_1_1_i_token_factory.html | 2 +- ..._1_system_1_1_i_network_prompt_reaper.html | 2 +- ..._1_1_system_1_1_i_platform_identifier.html | 2 +- ...ver_1_1_host_1_1_system_1_1_i_process.html | 4 +- ...ost_1_1_system_1_1_i_process_executor.html | 8 +- ..._1_host_1_1_utils_1_1_i_async_delayer.html | 2 +- ...er_1_1_host_1_1_components_1_1_events.html | 10 +- search/all_4.js | 2 +- search/all_5.js | 79 +- search/enumvalues_3.js | 3 +- search/functions_2.js | 2 +- 59 files changed, 2256 insertions(+), 2192 deletions(-) diff --git a/_api_headers_8cs_source.html b/_api_headers_8cs_source.html index 41fbdb9238..6beb858f9d 100644 --- a/_api_headers_8cs_source.html +++ b/_api_headers_8cs_source.html @@ -242,7 +242,7 @@ $(document).ready(function() { init_codefold(0); });
- + diff --git a/_application_8cs_source.html b/_application_8cs_source.html index 7933f6c738..30f90c9361 100644 --- a/_application_8cs_source.html +++ b/_application_8cs_source.html @@ -580,244 +580,247 @@ $(document).ready(function() { init_codefold(0); }); -The server's entrypoint is in the Tgstation.Server.Host.Program class. This class mainly determines if the Host watchdog is present and creates and runs the Tgstation.Server.Host.Server class. That class then builds an ASP.NET Core web host using the Tgstation.Server.Host.Core.Application class.
-The Tgstation.Server.Host.Core.Application class has two methods called by the framework. First the Tgstation.Server.Host.Core.Application.ConfigureServices method sets up dependency injection of interfaces for Controllers, the Tgstation.Server.Host.Database.DatabaseContext, and the component factories of the server. The framework handles constructing these things once the application starts. Configuration is loaded from the appropriate appsettings.yml into the Tgstation.Server.Host.Configuration classes for injection as well. Then Tgstation.Server.Host.Core.Application.Configure method is run which sets up the web request pipeline which currently has the following stack of handlers:
+The Tgstation.Server.Host.Core.Application class has two methods called by the framework. First the Tgstation.Server.Host.Core.Application.ConfigureServices method sets up dependency injection of interfaces for Controllers, the Tgstation.Server.Host.Database.DatabaseContext, and the component factories of the server. The framework handles constructing these things once the application starts. Configuration is loaded from the appropriate appsettings.yml into the Tgstation.Server.Host.Configuration classes for injection as well. Then Tgstation.Server.Host.Core.Application.Configure method is run which sets up the web request pipeline which currently has the following stack of handlers:
Definition at line 24 of file EngineVersion.cs.
Referenced by Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.ApplyInitialDmb(), Tgstation.Server.Host.Components.Engine.ByondInstallation.ByondInstallation(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.CanUseSwappableDmbProvider(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings(), Tgstation.Server.Host.Components.Engine.EngineManager.CheckVersionParameter(), Tgstation.Server.Host.Components.Engine.EngineInstallerBase.CheckVersionValidity(), Tgstation.Server.Host.Components.Engine.DelegatingEngineInstaller.DelegateCall< TReturn >(), Tgstation.Server.Api.Models.EngineVersion.EngineVersion(), Tgstation.Server.Api.Models.EngineVersion.Equals(), Tgstation.Server.Host.Components.Chat.Commands.EngineCommand.Invoke(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Engine.OpenDreamInstallation.OpenDreamInstallation(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage(), Tgstation.Server.Api.Models.EngineVersion.ToString(), and Tgstation.Server.Api.Models.EngineVersion.TryParse().
+Referenced by Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.ApplyInitialDmb(), Tgstation.Server.Host.Components.Engine.ByondInstallation.ByondInstallation(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.CanUseSwappableDmbProvider(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings(), Tgstation.Server.Host.Components.Engine.EngineManager.CheckVersionParameter(), Tgstation.Server.Host.Components.Engine.EngineInstallerBase.CheckVersionValidity(), Tgstation.Server.Host.Components.Engine.DelegatingEngineInstaller.DelegateCall< TReturn >(), Tgstation.Server.Api.Models.EngineVersion.EngineVersion(), Tgstation.Server.Api.Models.EngineVersion.Equals(), Tgstation.Server.Host.Components.Chat.Commands.EngineCommand.Invoke(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Engine.OpenDreamInstallation.OpenDreamInstallation(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage(), Tgstation.Server.Api.Models.EngineVersion.ToString(), and Tgstation.Server.Api.Models.EngineVersion.TryParse().
Definition at line 14 of file EntityId.cs.
Referenced by Tgstation.Server.Host.Authority.LoginAuthority.AttemptLogin(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Jobs.JobService.CancelJob(), Tgstation.Server.Host.Controllers.ChatController.Create(), Tgstation.Server.Host.Controllers.RepositoryController.Create(), Tgstation.Server.Client.InstanceManagerClient.CreateClient(), Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.CreateLock(), Tgstation.Server.Api.Models.UserName.CreateUserName< TResultType >(), Tgstation.Server.Host.Controllers.RepositoryController.Delete(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.Delete(), Tgstation.Server.Host.Controllers.JobController.Delete(), Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.DeploymentLockManager(), Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJobInternal(), Tgstation.Server.Host.Authority.UserAuthority.GetId(), Tgstation.Server.Host.Controllers.ChatController.GetId(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.GetId(), Tgstation.Server.Host.Controllers.JobController.GetId(), Tgstation.Server.Host.Controllers.UserController.GetId(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Controllers.ApiController.HookExecuteAction(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitController(), Tgstation.Server.Client.Components.InstanceClient.InstanceClient(), Tgstation.Server.Host.Models.Job.Job(), Tgstation.Server.Host.Models.Job.Job(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Controllers.ChatController.List(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.PerformDmbSwap(), Tgstation.Server.Host.Controllers.DreamMakerController.Read(), Tgstation.Server.Host.Controllers.RepositoryController.Read(), Tgstation.Server.Client.Components.ConfigurationClient.Read(), Tgstation.Server.Host.Controllers.DreamDaemonController.ReadImpl(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Controllers.RepositoryController.Reclone(), Tgstation.Server.Host.Jobs.JobService.RegisterOperation(), Tgstation.Server.Host.Jobs.JobService.RunJob(), Tgstation.Server.Client.Components.EngineClient.SetActiveVersion(), Tgstation.Server.Host.GraphQL.Mutations.UserMutations.SetCurrentOAuthConnections(), Tgstation.Server.Host.GraphQL.Mutations.UserMutations.SetCurrentUserPassword(), Tgstation.Server.Host.Models.ChatBot.ToApi(), Tgstation.Server.Host.Models.CompileJob.ToApi(), Tgstation.Server.Host.Models.Instance.ToApi(), Tgstation.Server.Host.Models.Job.ToApi(), Tgstation.Server.Host.Models.UserGroup.ToApi(), Tgstation.Server.Host.Controllers.ChatController.Update(), Tgstation.Server.Host.Controllers.DreamDaemonController.Update(), Tgstation.Server.Host.Controllers.DreamMakerController.Update(), Tgstation.Server.Host.Controllers.EngineController.Update(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.Update(), Tgstation.Server.Host.Controllers.RepositoryController.Update(), Tgstation.Server.Host.Jobs.JobsHubGroupMapper.UserDisabled(), and Tgstation.Server.Client.Components.ConfigurationClient.Write().
+Referenced by Tgstation.Server.Host.Authority.LoginAuthority.AttemptLogin(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Jobs.JobService.CancelJob(), Tgstation.Server.Host.Controllers.ChatController.Create(), Tgstation.Server.Host.Controllers.RepositoryController.Create(), Tgstation.Server.Client.InstanceManagerClient.CreateClient(), Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.CreateLock(), Tgstation.Server.Api.Models.UserName.CreateUserName< TResultType >(), Tgstation.Server.Host.Controllers.RepositoryController.Delete(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.Delete(), Tgstation.Server.Host.Controllers.JobController.Delete(), Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.DeploymentLockManager(), Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJobInternal(), Tgstation.Server.Host.Authority.UserAuthority.GetId(), Tgstation.Server.Host.Controllers.ChatController.GetId(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.GetId(), Tgstation.Server.Host.Controllers.JobController.GetId(), Tgstation.Server.Host.Controllers.UserController.GetId(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Controllers.ApiController.HookExecuteAction(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitController(), Tgstation.Server.Client.Components.InstanceClient.InstanceClient(), Tgstation.Server.Host.Models.Job.Job(), Tgstation.Server.Host.Models.Job.Job(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Controllers.ChatController.List(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.PerformDmbSwap(), Tgstation.Server.Host.Controllers.DreamMakerController.Read(), Tgstation.Server.Host.Controllers.RepositoryController.Read(), Tgstation.Server.Client.Components.ConfigurationClient.Read(), Tgstation.Server.Host.Controllers.DreamDaemonController.ReadImpl(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Controllers.RepositoryController.Reclone(), Tgstation.Server.Host.Jobs.JobService.RegisterOperation(), Tgstation.Server.Host.Jobs.JobService.RunJob(), Tgstation.Server.Client.Components.EngineClient.SetActiveVersion(), Tgstation.Server.Host.GraphQL.Mutations.UserMutations.SetCurrentOAuthConnections(), Tgstation.Server.Host.GraphQL.Mutations.UserMutations.SetCurrentUserPassword(), Tgstation.Server.Host.Models.ChatBot.ToApi(), Tgstation.Server.Host.Models.CompileJob.ToApi(), Tgstation.Server.Host.Models.Instance.ToApi(), Tgstation.Server.Host.Models.Job.ToApi(), Tgstation.Server.Host.Models.UserGroup.ToApi(), Tgstation.Server.Host.Controllers.ChatController.Update(), Tgstation.Server.Host.Controllers.DreamDaemonController.Update(), Tgstation.Server.Host.Controllers.DreamMakerController.Update(), Tgstation.Server.Host.Controllers.EngineController.Update(), Tgstation.Server.Host.Controllers.InstancePermissionSetController.Update(), Tgstation.Server.Host.Controllers.RepositoryController.Update(), Tgstation.Server.Host.Jobs.JobsHubGroupMapper.UserDisabled(), and Tgstation.Server.Client.Components.ConfigurationClient.Write().
Definition at line 43 of file CompileJob.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionController.GetLaunchResult(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), and Tgstation.Server.Host.Components.Session.SessionController.SessionController().
+Referenced by Tgstation.Server.Host.Components.Session.SessionController.GetLaunchResult(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), and Tgstation.Server.Host.Components.Session.SessionController.SessionController().
Definition at line 35 of file CompileJob.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Models.CompileJob.ToApi().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Models.CompileJob.ToApi().
diff --git a/class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html b/class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html index 3dee1b78fe..5b6ed32f27 100644 --- a/class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html +++ b/class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html @@ -371,7 +371,7 @@ PropertiesDefinition at line 107 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
+Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
@@ -487,7 +487,7 @@ PropertiesDefinition at line 51 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
@@ -517,7 +517,7 @@ PropertiesDefinition at line 42 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
@@ -576,7 +576,7 @@ PropertiesDefinition at line 68 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNormalReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
+Referenced by Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNormalReboot(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
@@ -606,7 +606,7 @@ PropertiesDefinition at line 92 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
@@ -636,7 +636,7 @@ PropertiesDefinition at line 33 of file DreamDaemonLaunchParameters.cs.
Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.CanApplyWithoutReboot(), Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
diff --git a/class_tgstation_1_1_server_1_1_api_1_1_routes.html b/class_tgstation_1_1_server_1_1_api_1_1_routes.html index dbbb50f890..9f9cb194f4 100644 --- a/class_tgstation_1_1_server_1_1_api_1_1_routes.html +++ b/class_tgstation_1_1_server_1_1_api_1_1_routes.html @@ -615,7 +615,7 @@ Here is the caller graph for this function:Definition at line 18 of file Routes.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Controllers.RootController.Index(), and Tgstation.Server.Client.GraphQL.GraphQLServerClientFactory.SetupServiceProvider().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Controllers.RootController.Index(), and Tgstation.Server.Client.GraphQL.GraphQLServerClientFactory.SetupServiceProvider().
@@ -643,7 +643,7 @@ Here is the caller graph for this function:Definition at line 23 of file Routes.cs.
-Referenced by Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
+Referenced by Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
@@ -749,7 +749,7 @@ Here is the caller graph for this function:Definition at line 118 of file Routes.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Client.ApiClient.CreateHubConnection< THubImplementation >().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Client.ApiClient.CreateHubConnection< THubImplementation >().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html index 11784e9aa7..64fdf0bf6f 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html @@ -843,7 +843,7 @@ Here is the call graph for this function: -Definition at line 56 of file DMApiConstants.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), and Tgstation.Server.Host.Controllers.ApiRootController.ServerInfo().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), and Tgstation.Server.Host.Controllers.ApiRootController.ServerInfo().
@@ -268,7 +268,7 @@ Static Public AttributesDefinition at line 30 of file DMApiConstants.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.OpenDreamInstallation.FormatServerArguments().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.OpenDreamInstallation.FormatServerArguments().
@@ -296,7 +296,7 @@ Static Public AttributesDefinition at line 20 of file DMApiConstants.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
@@ -324,7 +324,7 @@ Static Public AttributesDefinition at line 25 of file DMApiConstants.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html index a13a720a45..bc46722b08 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html @@ -305,7 +305,7 @@ Additional Inherited MembersReferences Tgstation.Server.Host.Components.Session.ReattachInformation.runtimeInformationLock.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Definition at line 18 of file ReattachInformation.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation(), Tgstation.Server.Host.Components.Session.SessionController.Release(), Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), Tgstation.Server.Host.Components.Session.SessionController.SessionController(), and Tgstation.Server.Host.Components.Session.SessionController.TriggerCustomEvent().
+Referenced by Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync(), Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeCommand(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation(), Tgstation.Server.Host.Components.Session.SessionController.Release(), Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), Tgstation.Server.Host.Components.Session.SessionController.SessionController(), and Tgstation.Server.Host.Components.Session.SessionController.TriggerCustomEvent().
@@ -463,7 +463,7 @@ Here is the caller graph for this function:Definition at line 33 of file ReattachInformation.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html index 7bc732882f..0f285d3ed9 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html @@ -274,7 +274,7 @@ Static Private AttributesDefinition at line 32 of file SessionControllerFactory.cs.
+Definition at line 33 of file SessionControllerFactory.cs.
Definition at line 190 of file SessionControllerFactory.cs.
-Definition at line 191 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite, Tgstation.Server.Host.Components.Session.SessionControllerFactory.diagnosticsIOManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.sessionConfiguration, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite, Tgstation.Server.Host.Components.Session.SessionControllerFactory.diagnosticsIOManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.sessionConfiguration, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory.
Make sure the BYOND pager is not running.
Definition at line 648 of file SessionControllerFactory.cs.
-Definition at line 656 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess(), Tgstation.Server.Host.System.IProcess.GetExecutingUsername(), Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName(), Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor.
+References Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess(), Tgstation.Server.Host.System.IProcess.GetExecutingUsername(), Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName(), Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
Definition at line 495 of file SessionControllerFactory.cs.
-Definition at line 496 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Engine.IEngineInstallation.FormatServerArguments(), Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.HasStandardOutput, Tgstation.Server.Host.Configuration.SessionConfiguration.HighPriorityLiveDreamDaemon, Tgstation.Server.Host.Core.IServerPortProvider.HttpApiPort, Tgstation.Server.Host.Components.Interop.DMApiConstants.InteropVersion, Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.LoadEnv(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Configuration.SessionConfiguration.LowPriorityDeploymentProcesses, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamAccessIdentifier, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamApiVersion, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamServerPort, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.ServerExePath, Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.sessionConfiguration.
+References Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Engine.IEngineInstallation.FormatServerArguments(), Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.HasStandardOutput, Tgstation.Server.Host.Configuration.SessionConfiguration.HighPriorityLiveDreamDaemon, Tgstation.Server.Host.Core.IServerPortProvider.HttpApiPort, Tgstation.Server.Host.Components.Interop.DMApiConstants.InteropVersion, Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.LoadEnv(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Configuration.SessionConfiguration.LowPriorityDeploymentProcesses, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamAccessIdentifier, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamApiVersion, Tgstation.Server.Host.Components.Interop.DMApiConstants.ParamServerPort, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess(), Tgstation.Server.Host.Components.Engine.IEngineInstallation.ServerExePath, Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.sessionConfiguration.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Implements Tgstation.Server.Host.Components.Session.ISessionControllerFactory.
-Definition at line 234 of file SessionControllerFactory.cs.
-Definition at line 235 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob, Tgstation.Server.Host.IO.IIOManager.ConcatPath(), Tgstation.Server.Host.IO.IIOManager.CreateDirectory(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateRuntimeInformation(), Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient(), Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite, Tgstation.Server.Host.Components.Session.SessionControllerFactory.diagnosticsIOManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory, Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion, Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.DreamDaemonLogsPath, Tgstation.Server.Api.Models.EngineVersion.Engine, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.EngineVersion, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.LogOutput, Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port, Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.IO.IIOManager.ResolvePath(), Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.StartupTimeout, Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout, Tgstation.Server.Host.Components.Engine.IEngineManager.UseExecutables(), and Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Visibility.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob, Tgstation.Server.Host.IO.IIOManager.ConcatPath(), Tgstation.Server.Host.IO.IIOManager.CreateDirectory(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateRuntimeInformation(), Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient(), Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite, Tgstation.Server.Host.Components.Session.SessionControllerFactory.diagnosticsIOManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory, Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion, Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.DreamDaemonLogsPath, Tgstation.Server.Api.Models.EngineVersion.Engine, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.EngineVersion, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.LogOutput, Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port, Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.IO.IIOManager.ResolvePath(), Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.StartupTimeout, Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory, Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout, Tgstation.Server.Host.Components.Engine.IEngineManager.UseExecutables(), and Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Visibility.
Referenced by Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitController().
Definition at line 575 of file SessionControllerFactory.cs.
-Definition at line 583 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.IO.IIOManager.DeleteFile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.System.IProcess.GetCombinedOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, and Tgstation.Server.Host.IO.IIOManager.ReadAllBytes().
+References Tgstation.Server.Host.IO.IIOManager.DeleteFile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.gameIOManager, Tgstation.Server.Host.System.IProcess.GetCombinedOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, and Tgstation.Server.Host.IO.IIOManager.ReadAllBytes().
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
Definition at line 141 of file SessionControllerFactory.cs.
-Definition at line 142 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Extensions.SocketExtensions.BindTest(), Tgstation.Server.Host.Utils.IAsyncDelayer.Delay(), Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Extensions.SocketExtensions.BindTest(), Tgstation.Server.Host.Utils.IAsyncDelayer.Delay(), Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, and Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
Implements Tgstation.Server.Host.Components.Session.ISessionControllerFactory.
-Definition at line 398 of file SessionControllerFactory.cs.
-Definition at line 399 of file SessionControllerFactory.cs.
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob, Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateRuntimeInformation(), Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient(), Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext(), Tgstation.Server.Host.Components.Session.ReattachInformation.Dmb, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.EngineVersion, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.System.IProcessExecutor.GetProcess(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Models.ReattachInformationBase.LaunchSecurityLevel, Tgstation.Server.Host.Models.ReattachInformationBase.LaunchVisibility, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.Models.ReattachInformationBase.ProcessId, Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess(), Tgstation.Server.Host.Components.Session.ReattachInformation.SetRuntimeInformation(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory, Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout, and Tgstation.Server.Host.Components.Engine.IEngineManager.UseExecutables().
+References Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider, Tgstation.Server.Host.Components.Session.SessionControllerFactory.asyncDelayer, Tgstation.Server.Host.Components.Session.SessionControllerFactory.bridgeRegistrar, Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat, Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob, Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateRuntimeInformation(), Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient(), Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext(), Tgstation.Server.Host.Components.Session.ReattachInformation.Dmb, Tgstation.Server.Host.Components.Session.SessionControllerFactory.dotnetDumpService, Tgstation.Server.Host.Components.Session.SessionControllerFactory.engineManager, Tgstation.Server.Host.Components.Deployment.IDmbProvider.EngineVersion, Tgstation.Server.Host.Components.Session.SessionControllerFactory.eventConsumer, Tgstation.Server.Host.System.IProcessExecutor.GetProcess(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance, Tgstation.Server.Host.Models.ReattachInformationBase.LaunchSecurityLevel, Tgstation.Server.Host.Models.ReattachInformationBase.LaunchVisibility, Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger, Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory, Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper, Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor, Tgstation.Server.Host.Models.ReattachInformationBase.ProcessId, Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess(), Tgstation.Server.Host.Components.Session.ReattachInformation.SetRuntimeInformation(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory, Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout, and Tgstation.Server.Host.Components.Engine.IEngineManager.UseExecutables().
Referenced by Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitController().
The IAssemblyInformationProvider for the SessionControllerFactory.
-Definition at line 62 of file SessionControllerFactory.cs.
+Definition at line 63 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
The IAsyncDelayer for the SessionControllerFactory.
-Definition at line 107 of file SessionControllerFactory.cs.
+Definition at line 108 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1657,9 +1664,9 @@ Here is the caller graph for this function:The IBridgeRegistrar for the SessionControllerFactory.
-Definition at line 92 of file SessionControllerFactory.cs.
+Definition at line 93 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1685,9 +1692,9 @@ Here is the caller graph for this function:The IChatManager for the SessionControllerFactory.
-Definition at line 77 of file SessionControllerFactory.cs.
+Definition at line 78 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1713,9 +1720,9 @@ Here is the caller graph for this function:The ICryptographySuite for the SessionControllerFactory.
-Definition at line 57 of file SessionControllerFactory.cs.
+Definition at line 58 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1741,9 +1748,9 @@ Here is the caller graph for this function:The IIOManager for the Diagnostics directory.
-Definition at line 72 of file SessionControllerFactory.cs.
+Definition at line 73 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1769,9 +1776,9 @@ Here is the caller graph for this function:The IDotnetDumpService for the SessionControllerFactory.
-Definition at line 112 of file SessionControllerFactory.cs.
+Definition at line 113 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1797,9 +1804,9 @@ Here is the caller graph for this function:Path in Diagnostics folder to DreamDaemon logs.
-Definition at line 37 of file SessionControllerFactory.cs.
+Definition at line 38 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
@@ -1825,9 +1832,9 @@ Here is the caller graph for this function:The IEngineManager for the SessionControllerFactory.
-Definition at line 47 of file SessionControllerFactory.cs.
+Definition at line 48 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1853,9 +1860,9 @@ Here is the caller graph for this function:The IEventConsumer for the SessionControllerFactory.
-Definition at line 102 of file SessionControllerFactory.cs.
+Definition at line 103 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1881,9 +1888,9 @@ Here is the caller graph for this function:The IIOManager for the Game directory.
-Definition at line 67 of file SessionControllerFactory.cs.
+Definition at line 68 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1909,9 +1916,9 @@ Here is the caller graph for this function:The Api.Models.Instance for the SessionControllerFactory.
-Definition at line 132 of file SessionControllerFactory.cs.
+Definition at line 133 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1937,9 +1944,9 @@ Here is the caller graph for this function:The ILogger for the SessionControllerFactory.
-Definition at line 122 of file SessionControllerFactory.cs.
+Definition at line 123 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1965,9 +1972,9 @@ Here is the caller graph for this function:The ILoggerFactory for the SessionControllerFactory.
-Definition at line 117 of file SessionControllerFactory.cs.
+Definition at line 118 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -1993,9 +2000,9 @@ Here is the caller graph for this function:The INetworkPromptReaper for the SessionControllerFactory.
-Definition at line 82 of file SessionControllerFactory.cs.
+Definition at line 83 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -2021,9 +2028,9 @@ Here is the caller graph for this function:The IPlatformIdentifier for the SessionControllerFactory.
-Definition at line 87 of file SessionControllerFactory.cs.
+Definition at line 88 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -2049,9 +2056,9 @@ Here is the caller graph for this function:The IProcessExecutor for the SessionControllerFactory.
-Definition at line 42 of file SessionControllerFactory.cs.
+Definition at line 43 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -2077,9 +2084,9 @@ Here is the caller graph for this function:The IServerPortProvider for the SessionControllerFactory.
-Definition at line 97 of file SessionControllerFactory.cs.
+Definition at line 98 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -2105,9 +2112,9 @@ Here is the caller graph for this function:The SessionConfiguration for the SessionControllerFactory.
-Definition at line 127 of file SessionControllerFactory.cs.
+Definition at line 128 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
@@ -2133,9 +2140,9 @@ Here is the caller graph for this function:The ITopicClientFactory for the SessionControllerFactory.
-Definition at line 52 of file SessionControllerFactory.cs.
+Definition at line 53 of file SessionControllerFactory.cs.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html index f05bafa5ba..036e94c0f2 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html @@ -1077,9 +1077,9 @@ Here is the caller graph for this function:References Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters, Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CheckLaunchResult(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllers(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger, Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ReattachFailure(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.SessionId, Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.SessionStartupPersist(), and Tgstation.Server.Host.Components.Session.SessionPersistor.Update().
+References Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters, Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CheckLaunchResult(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllers(), Tgstation.Server.Api.Models.EntityId.Id, Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger, Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ReattachFailure(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.SessionId, Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.SessionStartupPersist(), and Tgstation.Server.Host.Components.Session.SessionPersistor.Update().
Definition at line 82 of file GeneralConfiguration.cs.
-Referenced by Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility(), Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Setup.SetupWizard.SaveConfiguration().
+Referenced by Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility(), Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Setup.SetupWizard.SaveConfiguration().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_session_configuration.html b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_session_configuration.html index 1bfd66ce1f..288a8009b7 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_session_configuration.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_session_configuration.html @@ -265,7 +265,7 @@ Static Private AttributesReferenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
@@ -294,7 +294,7 @@ Static Private AttributesDefinition at line 26 of file SessionConfiguration.cs.
Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.WindowsOpenDreamInstaller.AddServerFirewallException(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install().
+Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.WindowsOpenDreamInstaller.AddServerFirewallException(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_control_panel_controller.html b/class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_control_panel_controller.html index 98ad10933c..947206318a 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_control_panel_controller.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_control_panel_controller.html @@ -477,7 +477,7 @@ Here is the caller graph for this function:Definition at line 31 of file ControlPanelController.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Controllers.ControlPanelController.GetChannelJson().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Controllers.ControlPanelController.GetChannelJson().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application-members.html b/class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application-members.html index d211ebbdad..5165cf42ce 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application-members.html @@ -83,7 +83,7 @@ $(function() {
Public Member Functions inherited from Tgstation.Server.Host.Setup.SetupApplicationDefinition at line 533 of file Application.cs.
-Definition at line 534 of file Application.cs.
+Definition at line 711 of file Application.cs.
-Definition at line 715 of file Application.cs.
+References Tgstation.Server.Host.IO.IIOManager.ConcatPath(), Tgstation.Server.Host.Setup.SetupApplication.Configuration, Tgstation.Server.Host.Utils.SwaggerConfiguration.Configure(), Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.Setup.IPostSetupServices.DatabaseConfiguration, Tgstation.Server.Host.Configuration.DatabaseConfiguration.DatabaseType, Tgstation.Server.Host.Controllers.ApiController.DefaultPageSize, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Disable, Tgstation.Server.Host.Setup.IPostSetupServices.ElasticsearchConfiguration, Tgstation.Server.Host.Setup.IPostSetupServices.FileLoggingConfiguration, Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration, Tgstation.Server.Host.IO.IIOManager.GetDirectoryName(), Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension(), Tgstation.Server.Host.Configuration.FileLoggingConfiguration.GetFullLogDirectory(), Tgstation.Server.Host.Configuration.GeneralConfiguration.HostApiDocumentation, Tgstation.Server.Host.Core.Application.hostingEnvironment, Tgstation.Server.Host.Setup.IPostSetupServices.InternalConfiguration, Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.LogLevel, Tgstation.Server.Host.Controllers.ApiController.MaximumPageSize, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.MicrosoftLogLevel, Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier, Tgstation.Server.Host.Security.TgsAuthorizeAttribute.PolicyName, Tgstation.Server.Host.Configuration.GeneralConfiguration.RestartTimeoutMinutes, Tgstation.Server.Host.Utils.SerilogContextHelper.Template, Tgstation.Server.Host.Security.TgsAuthorizeAttribute.UserEnabledRole, and Tgstation.Server.Host.Configuration.InternalConfiguration.UsingSystemD.
+References Tgstation.Server.Host.IO.IIOManager.ConcatPath(), Tgstation.Server.Host.Setup.SetupApplication.Configuration, Tgstation.Server.Host.Utils.SwaggerConfiguration.Configure(), Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.Setup.IPostSetupServices.DatabaseConfiguration, Tgstation.Server.Host.Configuration.DatabaseConfiguration.DatabaseType, Tgstation.Server.Host.Controllers.ApiController.DefaultPageSize, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Disable, Tgstation.Server.Host.Setup.IPostSetupServices.ElasticsearchConfiguration, Tgstation.Server.Host.Setup.IPostSetupServices.FileLoggingConfiguration, Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration, Tgstation.Server.Host.IO.IIOManager.GetDirectoryName(), Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension(), Tgstation.Server.Host.Configuration.FileLoggingConfiguration.GetFullLogDirectory(), Tgstation.Server.Host.Configuration.GeneralConfiguration.HostApiDocumentation, Tgstation.Server.Host.Core.Application.hostingEnvironment, Tgstation.Server.Host.Setup.IPostSetupServices.InternalConfiguration, Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.LogLevel, Tgstation.Server.Host.Controllers.ApiController.MaximumPageSize, Tgstation.Server.Host.Configuration.FileLoggingConfiguration.MicrosoftLogLevel, Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier, Tgstation.Server.Host.Security.TgsAuthorizeAttribute.PolicyName, Tgstation.Server.Host.Configuration.GeneralConfiguration.RestartTimeoutMinutes, Tgstation.Server.Host.Utils.SerilogContextHelper.Template, Tgstation.Server.Host.Security.TgsAuthorizeAttribute.UserEnabledRole, and Tgstation.Server.Host.Configuration.InternalConfiguration.UsingSystemD.
Referenced by Tgstation.Server.Host.Core.Application.ConfigureServices().
Definition at line 87 of file Application.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Application(), Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Core.Application.ConfigureServices().
+Referenced by Tgstation.Server.Host.Core.Application.Application(), Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Core.Application.ConfigureServices().
Definition at line 92 of file Application.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html b/class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html index c8ce8eb9d6..213b9c3d42 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html @@ -191,7 +191,7 @@ Static Public Member FunctionsReferences Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows, and Tgstation.Server.Host.System.ProcessExecutor.WithProcessLaunchExclusivity().
-Referenced by Tgstation.Server.Host.Utils.PortAllocator.GetAvailablePort(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), and Tgstation.Server.Host.Components.InstanceManager.PreflightChecks().
+Referenced by Tgstation.Server.Host.Utils.PortAllocator.GetAvailablePort(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), and Tgstation.Server.Host.Components.InstanceManager.PreflightChecks().
Definition at line 42 of file ReattachInformationBase.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
Definition at line 47 of file ReattachInformationBase.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
@@ -459,7 +459,7 @@ PropertiesDefinition at line 22 of file ReattachInformationBase.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), and Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_properties_1_1_master_versions_attribute.html b/class_tgstation_1_1_server_1_1_host_1_1_properties_1_1_master_versions_attribute.html index e4f338d0a1..a9e8a91df7 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_properties_1_1_master_versions_attribute.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_properties_1_1_master_versions_attribute.html @@ -260,7 +260,7 @@ PropertiesDefinition at line 15 of file MasterVersionsAttribute.cs.
-Referenced by Tgstation.Server.Host.Setup.SetupWizard.CheckRunWizard(), Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Controllers.SwarmController.Register(), Tgstation.Server.Host.Swarm.SwarmService.RegisterWithController(), and Tgstation.Server.Host.Extensions.ApplicationBuilderExtensions.UseApiCompatibility().
+Referenced by Tgstation.Server.Host.Setup.SetupWizard.CheckRunWizard(), Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Controllers.SwarmController.Register(), Tgstation.Server.Host.Swarm.SwarmService.RegisterWithController(), and Tgstation.Server.Host.Extensions.ApplicationBuilderExtensions.UseApiCompatibility().
@@ -463,7 +463,7 @@ PropertiesDefinition at line 32 of file MasterVersionsAttribute.cs.
Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Properties.MasterVersionsAttribute.MasterVersionsAttribute().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Properties.MasterVersionsAttribute.MasterVersionsAttribute().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_swagger_configuration.html b/class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_swagger_configuration.html index d97f0a386f..d8b589d11d 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_swagger_configuration.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_swagger_configuration.html @@ -1133,7 +1133,7 @@ Here is the caller graph for this function:Definition at line 39 of file SwaggerConfiguration.cs.
-Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Controllers.RootController.Index().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), and Tgstation.Server.Host.Controllers.RootController.Index().
diff --git a/class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html b/class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html index 437372a708..5c5f57cf7d 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html @@ -368,288 +368,292 @@ Private AttributesImplemented in Tgstation.Server.Host.Components.Chat.ChatManager.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Definition at line 25 of file IDmbProvider.cs.
Referenced by Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.DeploymentLockManager(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.RuntimeInformation(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), and Tgstation.Server.Host.Components.Session.SessionController.SessionController().
+Referenced by Tgstation.Server.Host.Components.Deployment.DeploymentLockManager.DeploymentLockManager(), Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.HandleNewDmbAvailable(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach(), Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.RuntimeInformation(), Tgstation.Server.Host.Components.Session.SessionController.SendTopicRequest(), and Tgstation.Server.Host.Components.Session.SessionController.SessionController().
@@ -240,7 +240,7 @@ Here is the caller graph for this function:Definition at line 20 of file IDmbProvider.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionController.TriggerCustomEvent().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionController.TriggerCustomEvent().
@@ -271,7 +271,7 @@ Here is the caller graph for this function:Definition at line 15 of file IDmbProvider.cs.
Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallation.FormatServerArguments(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
@@ -302,7 +302,7 @@ Here is the caller graph for this function:Definition at line 30 of file IDmbProvider.cs.
Referenced by Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.CanUseSwappableDmbProvider(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Watchdog.AdvancedWatchdog.CanUseSwappableDmbProvider(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_installation.html b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_installation.html index a88fd8cc00..a63b148424 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_installation.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_installation.html @@ -268,7 +268,7 @@ Here is the caller graph for this function:Implemented in Tgstation.Server.Host.Components.Engine.ByondInstallation, Tgstation.Server.Host.Components.Engine.EngineExecutableLock, Tgstation.Server.Host.Components.Engine.EngineInstallationBase, and Tgstation.Server.Host.Components.Engine.OpenDreamInstallation.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
Implemented in Tgstation.Server.Host.Components.Engine.EngineExecutableLock, and Tgstation.Server.Host.Components.Engine.EngineInstallationBase.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunDreamMaker().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunDreamMaker().
Definition at line 37 of file IEngineInstallation.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
@@ -619,7 +619,7 @@ Here is the caller graph for this function:Definition at line 27 of file IEngineInstallation.cs.
Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess().
diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_manager.html b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_manager.html index c3de51d080..064aeacd43 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_manager.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_engine_1_1_i_engine_manager.html @@ -295,7 +295,7 @@ PropertiesImplemented in Tgstation.Server.Host.Components.Engine.EngineManager.
-Referenced by Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Implemented in Tgstation.Server.Host.Components.Events.EventConsumer, Tgstation.Server.Host.Components.Events.NoopEventConsumer, Tgstation.Server.Host.Components.StaticFiles.Configuration, and Tgstation.Server.Host.Components.Watchdog.WatchdogBase.
-Referenced by Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge(), Tgstation.Server.Host.Components.Engine.EngineManager.AssertAndLockVersion(), Tgstation.Server.Host.Components.Instance.AutoUpdateAction(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Components.Engine.EngineManager.ChangeVersion(), Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject(), Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Deployment.DmbFactory.DeleteCompileJobContent(), Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess(), Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin(), Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEventImpl(), Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin(), Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
+Referenced by Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge(), Tgstation.Server.Host.Components.Engine.EngineManager.AssertAndLockVersion(), Tgstation.Server.Host.Components.Instance.AutoUpdateAction(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb(), Tgstation.Server.Host.Components.Engine.EngineManager.ChangeVersion(), Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject(), Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Components.Deployment.DmbFactory.DeleteCompileJobContent(), Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess(), Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin(), Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent(), Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEventImpl(), Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin(), Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin(), and Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob().
Definition at line 15 of file IInstanceManager.cs.
Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Core.CommandPipeManager.ExecuteAsync(), and Tgstation.Server.Host.System.SystemDManager.ExecuteAsync().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Core.CommandPipeManager.ExecuteAsync(), and Tgstation.Server.Host.System.SystemDManager.ExecuteAsync().
diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html index 2a7034eed8..22119f2ea7 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html @@ -132,7 +132,7 @@ Public Member FunctionsImplemented in Tgstation.Server.Host.Components.Session.TopicClientFactory.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Definition at line 11 of file IServerPortProvider.cs.
Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Utils.PortAllocator.GetAvailablePort(), and Tgstation.Server.Host.Components.InstanceManager.PreflightChecks().
+Referenced by Tgstation.Server.Host.Core.Application.Configure(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), Tgstation.Server.Host.Utils.PortAllocator.GetAvailablePort(), and Tgstation.Server.Host.Components.InstanceManager.PreflightChecks().
Implemented in Tgstation.Server.Host.IO.DefaultIOManager.
-Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AdditionalCacheCleanFilePaths(), Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Controllers.InstanceController.Delete(), Tgstation.Server.Host.Components.Engine.EngineManager.DeleteVersion(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJobInternal(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.GetExecutablePaths(), Tgstation.Server.Host.Configuration.FileLoggingConfiguration.GetFullLogDirectory(), Tgstation.Server.Host.Controllers.AdministrationController.GetLog(), Tgstation.Server.Host.Extensions.IOManagerExtensions.GetPathInLocalDirectory(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.Install(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.InstallDirectX(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Controllers.AdministrationController.ListLogs(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorDirectoryImpl(), Tgstation.Server.Host.Components.InstanceManager.MoveInstance(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.PosixByondInstaller(), Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.SetNoPromptTrusted(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.UpgradeInstallation(), Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.WindowsByondInstaller().
+Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AdditionalCacheCleanFilePaths(), Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Controllers.InstanceController.Delete(), Tgstation.Server.Host.Components.Engine.EngineManager.DeleteVersion(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJobInternal(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.GetExecutablePaths(), Tgstation.Server.Host.Configuration.FileLoggingConfiguration.GetFullLogDirectory(), Tgstation.Server.Host.Controllers.AdministrationController.GetLog(), Tgstation.Server.Host.Extensions.IOManagerExtensions.GetPathInLocalDirectory(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.Install(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.InstallDirectX(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Controllers.AdministrationController.ListLogs(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorDirectoryImpl(), Tgstation.Server.Host.Components.InstanceManager.MoveInstance(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.PosixByondInstaller(), Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.SetNoPromptTrusted(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.UpgradeInstallation(), Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.WindowsByondInstaller().
Implemented in Tgstation.Server.Host.IO.DefaultIOManager.
-Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorDirectoryImpl(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.SetNoPromptTrusted(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath(), and Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName().
+Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.OpenDreamInstaller.Install(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorDirectoryImpl(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.SetNoPromptTrusted(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath(), and Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName().
Implemented in Tgstation.Server.Host.IO.DefaultIOManager.
-Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Controllers.InstanceController.Delete(), Tgstation.Server.Host.Components.Engine.EngineManager.DeleteVersion(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Setup.SetupWizard.TestDatabaseConnection(), and Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName().
+Referenced by Tgstation.Server.Host.Components.Engine.ByondInstallerBase.CleanCache(), Tgstation.Server.Host.Controllers.InstanceController.Create(), Tgstation.Server.Host.Controllers.InstanceController.Delete(), Tgstation.Server.Host.Components.Engine.EngineManager.DeleteVersion(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Setup.SetupWizard.TestDatabaseConnection(), and Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName().
Implemented in Tgstation.Server.Host.IO.DefaultIOManager.
-Referenced by Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.EngineInstallationBase.LoadEnv(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath().
+Referenced by Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.EngineInstallationBase.LoadEnv(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.TrustDmbPath().
Implemented in Tgstation.Server.Host.IO.DefaultIOManager.
-Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.EngineManager.AssertAndLockVersion(), Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs(), Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository(), Tgstation.Server.Host.Components.Repository.Repository.CopyTo(), Tgstation.Server.Host.ServerFactory.CreateServer(), Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.Install(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorSourceDirectory(), Tgstation.Server.Host.Controllers.InstanceController.NormalizePath(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.PosixByondInstaller(), Tgstation.Server.Host.IO.ResolvingIOManager.ResolvingIOManager(), Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.WindowsByondInstaller().
+Referenced by Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.AddDreamDaemonToFirewall(), Tgstation.Server.Host.Components.Engine.EngineManager.AssertAndLockVersion(), Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs(), Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository(), Tgstation.Server.Host.Components.Repository.Repository.CopyTo(), Tgstation.Server.Host.ServerFactory.CreateServer(), Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository(), Tgstation.Server.Host.Components.Deployment.SymlinkDmbProvider.DoSwap(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.Install(), Tgstation.Server.Host.Components.Engine.EngineManager.InstallVersionFiles(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew(), Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository(), Tgstation.Server.Host.Components.Deployment.HardLinkDmbProvider.MirrorSourceDirectory(), Tgstation.Server.Host.Controllers.InstanceController.NormalizePath(), Tgstation.Server.Host.Components.Engine.PosixByondInstaller.PosixByondInstaller(), Tgstation.Server.Host.IO.ResolvingIOManager.ResolvingIOManager(), Tgstation.Server.Host.Components.Deployment.DreamMaker.RunCompileJob(), Tgstation.Server.Host.Components.Engine.EngineManager.StartAsync(), Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo(), Tgstation.Server.Host.Setup.SetupWizard.ValidateNonExistantSqliteDBName(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.WindowsByondInstaller().
Implemented in Tgstation.Server.Host.Security.CryptographySuite.
-Referenced by Tgstation.Server.Host.Transfer.FileTransferService.CreateDownload(), Tgstation.Server.Host.Transfer.FileTransferService.CreateUpload(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
+Referenced by Tgstation.Server.Host.Transfer.FileTransferService.CreateDownload(), Tgstation.Server.Host.Transfer.FileTransferService.CreateUpload(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew().
Definition at line 22 of file ITokenFactory.cs.
Referenced by Tgstation.Server.Host.Authority.LoginAuthority.CacheSystemIdentity(), and Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
+Referenced by Tgstation.Server.Host.Authority.LoginAuthority.CacheSystemIdentity(), and Tgstation.Server.Host.Core.Application.ConfigureAuthenticationPipeline().
diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html b/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html index 15c2857fcc..c15de9075a 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html @@ -133,7 +133,7 @@ Public Member FunctionsImplemented in Tgstation.Server.Host.System.PosixNetworkPromptReaper, and Tgstation.Server.Host.System.WindowsNetworkPromptReaper.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Definition at line 14 of file IPlatformIdentifier.cs.
Referenced by Tgstation.Server.Host.Extensions.SocketExtensions.BindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.System.DotnetHelper.GetDotnetPath(), Tgstation.Server.Host.Controllers.RootController.GetLogo(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.InstanceManager.PreflightChecks(), Tgstation.Server.Host.Controllers.ApiRootController.ServerInfo(), and Tgstation.Server.Host.Setup.SetupWizard.TestDatabaseConnection().
+Referenced by Tgstation.Server.Host.Extensions.SocketExtensions.BindTest(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning(), Tgstation.Server.Host.Core.Application.ConfigureServices(), Tgstation.Server.Host.System.DotnetHelper.GetDotnetPath(), Tgstation.Server.Host.Controllers.RootController.GetLogo(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.InstanceManager.PreflightChecks(), Tgstation.Server.Host.Controllers.ApiRootController.ServerInfo(), and Tgstation.Server.Host.Setup.SetupWizard.TestDatabaseConnection().
diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html b/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html index f69d538aec..9b596dc204 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html @@ -188,7 +188,7 @@ PropertiesImplemented in Tgstation.Server.Host.System.Process.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.LogDDOutput().
Implemented in Tgstation.Server.Host.System.Process.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
Implemented in Tgstation.Server.Host.System.ProcessExecutor.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
Implemented in Tgstation.Server.Host.System.ProcessExecutor.
-Referenced by Tgstation.Server.Host.Components.Session.SessionPersistor.Load(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
+Referenced by Tgstation.Server.Host.Components.Session.SessionPersistor.Load(), and Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach().
Implemented in Tgstation.Server.Host.System.ProcessExecutor.
-Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
+Referenced by Tgstation.Server.Host.Components.Session.SessionControllerFactory.CheckPagerIsNotRunning().
Implemented in Tgstation.Server.Host.System.ProcessExecutor.
-Referenced by Tgstation.Server.Host.System.WindowsFirewallHelper.AddFirewallException(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.InstallDirectX().
+Referenced by Tgstation.Server.Host.System.WindowsFirewallHelper.AddFirewallException(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.CreateGameServerProcess(), and Tgstation.Server.Host.Components.Engine.WindowsByondInstaller.InstallDirectX().
Implemented in Tgstation.Server.Host.Utils.AsyncDelayer.
-Referenced by Tgstation.Server.Host.Swarm.SwarmService.CommitUpdate(), Tgstation.Server.Host.System.WindowsNetworkPromptReaper.ExecuteAsync(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Session.SessionController.GetLaunchResult(), Tgstation.Server.Host.Security.IdentityCacheObject.IdentityCacheObject(), Tgstation.Server.Host.Components.InstanceManager.InitializeSwarm(), Tgstation.Server.Host.Components.Deployment.DmbFactory.LogLockStates(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionController.PostValidationShutdown(), Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest(), Tgstation.Server.Host.Transfer.FileTransferService.QueueExpiry(), Tgstation.Server.Host.Extensions.TopicClientExtensions.SendWithOptionalPriority(), Tgstation.Server.Host.System.PosixSignalHandler.SignalChecker(), and Tgstation.Server.Host.Components.Instance.TimerLoop().
+Referenced by Tgstation.Server.Host.Swarm.SwarmService.CommitUpdate(), Tgstation.Server.Host.System.WindowsNetworkPromptReaper.ExecuteAsync(), Tgstation.Server.Host.Core.VersionReportingService.ExecuteAsync(), Tgstation.Server.Host.Components.Session.SessionController.GetLaunchResult(), Tgstation.Server.Host.Security.IdentityCacheObject.IdentityCacheObject(), Tgstation.Server.Host.Components.InstanceManager.InitializeSwarm(), Tgstation.Server.Host.Components.Deployment.DmbFactory.LogLockStates(), Tgstation.Server.Host.Components.Session.SessionControllerFactory.PortBindTest(), Tgstation.Server.Host.Components.Session.SessionController.PostValidationShutdown(), Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest(), Tgstation.Server.Host.Transfer.FileTransferService.QueueExpiry(), Tgstation.Server.Host.Extensions.TopicClientExtensions.SendWithOptionalPriority(), Tgstation.Server.Host.System.PosixSignalHandler.SignalChecker(), and Tgstation.Server.Host.Components.Instance.TimerLoop().
Parameters: Version being installed.
Before game server process is created. No parameters.
+Definition at line 6 of file EventType.cs.
@@ -296,7 +300,10 @@ Enumerations