ESTTelemetryNotificationProtocol

Deprecated

Deprecated since 4.31.0.

@protocol ESTTelemetryNotificationProtocol <NSObject>

This protocol is used to determine methods for implementation by classes that want to read telemetry settings from device.

  • Method invoked after every scanned and parsed telemetry packet.

    Declaration

    Objective-C

    - (void)fireNotificationBlockWithTelemetryInfo:(nonnull ESTTelemetryInfo *)info;

    Swift

    func fireNotificationBlock(with info: ESTTelemetryInfo)

    Parameters

    info

    info object with data about specific telemetry packet.

  • Returns Class type of object returned in fireSuccessBlockWithTelemetryInfo.

    Declaration

    Objective-C

    - (nonnull Class)getInfoClass;

    Swift

    func getInfoClass() -> AnyClass

    Return Value

    Class type of object returned in fireSuccessBlockWithTelemetryInfo.