Revize 40568671
Přidáno uživatelem Pultak před asi 3 roky(ů)
ld_client/LDClient/detection/IDetection.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
|
|
7 |
namespace LDClient.detection { |
|
8 |
internal interface IDetection { |
|
9 |
|
|
10 |
public void DetectAsync(); |
|
11 |
|
|
12 |
public void RunPeriodicDetection(); |
|
13 |
public void StopPeriodicDetection(); |
|
14 |
} |
|
15 |
} |
Také k dispozici: Unified diff
re #9433 Abstract detection definition added