Skip to main content

Aila_ComsTest

Return current RSM reachability.

Signature

void Aila_ComsTest(void (^completion)(BOOL reachable));

Parameters

  • completion - Block/closure called with reachability result

Description

Returns a boolean that is true if the SDK was successfully able to communicate with the RSM (Remote Status Monitoring) endpoint.

Usage

Aila_ComsTest(^(BOOL reachable) {
if (reachable) {
NSLog(@"RSM endpoint is reachable");
} else {
NSLog(@"RSM endpoint is not reachable");
}
});

See Also

  • AilaRSM - Remote status monitoring configuration