Hosanna UI API v1.30.2-next
    Preparing search index...

    Interface ISystemEvent<T>

    Abstraction of a raw roku event, which was received in main.brs These events cannot be passed into scenegraph, as they are not part of the scenegraph event system, so the main thread will translate them into a useable format.

    Note, emulated web components, will package these up and send them directly to the main app, via HosannaAppUtils.getApp().onSystemEvent(), until we come up with an abstraction for that, and send the real event from the emulated web component.

    interface ISystemEvent<T extends JsonData = JsonData> {
        data: T;
        type: SystemEventType;
    }

    Type Parameters

    Index

    Properties

    Properties

    data: T