Skip to content

Commit

Permalink
指摘事項に対応。
Browse files Browse the repository at this point in the history
  • Loading branch information
fkoyama committed Jan 8, 2025
1 parent 5932ccb commit 351b5aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Maris.ConsoleApp.Core;
internal class Events
{
/// <summary>
/// デバッグ用のイベント ID
/// デバッグ用のイベント ID
/// </summary>
internal static readonly EventId DebugEvent = new(9999, nameof(DebugEvent));
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@ namespace Maris.ConsoleApp.Hosting;
internal class Events
{
/// <summary>
/// パラメータのパースの開始を示すイベント ID
/// パラメータのパースの開始を示すイベント ID
/// </summary>
internal static readonly EventId StartParseParameter = new(1001, nameof(StartParseParameter));

/// <summary>
/// ホスティングサービスの開始を示すイベント ID
/// ホスティングサービスの開始を示すイベント ID
/// </summary>
internal static readonly EventId StartHostingService = new(1101, nameof(StartHostingService));

/// <summary>
/// 不正なパラメータが検出されたことを示すイベント ID
/// 不正なパラメータが検出されたことを示すイベント ID
/// </summary>
internal static readonly EventId InvalidParameterDetected = new(1102, nameof(InvalidParameterDetected));

/// <summary>
/// コマンドの実行時に例外が発生したことを示すイベント ID
/// コマンドの実行時に例外が発生したことを示すイベント ID
/// </summary>
internal static readonly EventId CommandExecutorRaiseException = new(1103, nameof(CommandExecutorRaiseException));

/// <summary>
/// ホスティングサービスの終了を示すイベント ID
/// ホスティングサービスの終了を示すイベント ID
/// </summary>
internal static readonly EventId StopHostingService = new(1104, nameof(StopHostingService));

/// <summary>
/// デバッグ用のイベント ID
/// デバッグ用のイベント ID
/// </summary>
internal static readonly EventId DebugEvent = new(9999, nameof(DebugEvent));
}

0 comments on commit 351b5aa

Please sign in to comment.