| 4 | namespace Microsoft.Azure.SignalR.Samples.FlightMap |
| 5 | { |
| 6 | public interface IFlightControl { |
| 7 | void Start(); |
| 8 | |
| 9 | void Stop(); |
| 10 | |
| 11 | void Restart(); |
| 12 | |
| 13 | int VisitorJoin(); |
| 14 | |
| 15 | int VisitorLeave(); |
| 16 | |
| 17 | void SetSpeed(int speed); |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected