Commit b6ef70c8 authored by Liuhaoyang's avatar Liuhaoyang

Add SamplingService

parent 84f65569
using System.Threading.Tasks;
namespace SkyWalking.Sampling
{
public class SamplingService : ISampler
{
public Task Executing()
{
return Task.CompletedTask;
}
public Task Executed()
{
return Task.CompletedTask;
}
public bool TrySampling()
{
return true;
}
public void ForceSampled()
{
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment