hosanna-ui-docs - v0.9.0
    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 AppUtils.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