Skip to content
Snippets Groups Projects
Commit c508f2b3 authored by Dmytro Bogatov's avatar Dmytro Bogatov :two_hearts:
Browse files

Docs.

parent 1fb7302f
Branches
No related tags found
No related merge requests found
......@@ -30,6 +30,10 @@ namespace StatusMonitor.Daemons.Services
Task<PingDataPoint> PingServerAsync(PingSetting setting);
}
/// <summary>
/// Makes requests to a separate ping server
/// Expects RemotePingServerResponse response
/// </summary>
public class RemotePingService : IPingService
{
private readonly IMetricService _metrics;
......@@ -90,6 +94,9 @@ namespace StatusMonitor.Daemons.Services
}
}
/// <summary>
/// Structure of a separate ping server response expected by RemotePingService
/// </summary>
internal class RemotePingServerResponse
{
public string Url { get; set; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment