comline/core/tests/package/test/ping.ids

18 lines
244 B
Plaintext
Raw Permalink Normal View History

2023-08-28 14:09:31 -05:00
// Ping Schema
namespace test::idl::ping
2023-08-28 14:09:31 -05:00
import test::idl::health
const LOW_PING_RATE: u16 = 20
2023-08-28 14:09:31 -05:00
/// Ping another address
@provider=Any
protocol Ping {
function ping() -> bool;
2023-08-28 14:09:31 -05:00
@timeout_ms=1000
function ping_limit() -> bool;
2023-08-28 14:09:31 -05:00
}