ClusterInstance: MutableCluster<{
    attributes: {
        currentChannel: OptionalAttribute<TypeFromFields | null, any>;
    };
    commands: {
        changeChannelByNumber: Command<TypeFromFields, void, any>;
        skipChannel: Command<TypeFromFields, void, any>;
    };
    extensions: readonly [{
        component: {
            attributes: {
                channelList: Attribute<TypeFromFields[], any>;
            };
        };
        flags: {
            channelList: true;
        };
    }, {
        component: {
            attributes: {
                lineup: Attribute<TypeFromFields | null, any>;
            };
        };
        flags: {
            lineupInfo: true;
        };
    }, {
        component: {
            commands: {
                changeChannel: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            channelList: true;
        };
    }, {
        component: {
            commands: {
                changeChannel: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            lineupInfo: true;
        };
    }, {
        component: {
            commands: {
                getProgramGuide: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            electronicGuide: true;
        };
    }, {
        component: {
            commands: {
                cancelRecordProgram: Command<TypeFromFields, void, any>;
                recordProgram: Command<TypeFromFields, void, any>;
            };
        };
        flags: {
            electronicGuide: true;
            recordProgram: true;
        };
    }];
    features: {
        channelList: BitFlag;
        electronicGuide: BitFlag;
        lineupInfo: BitFlag;
        recordProgram: BitFlag;
    };
    id: 1284;
    name: "Channel";
    revision: 2;
}, []>

Type declaration

  • Readonlyattributes: {
        currentChannel: OptionalAttribute<TypeFromFields | null, any>;
    }
    • ReadonlycurrentChannel: OptionalAttribute<TypeFromFields | null, any>

      This attribute shall contain the current channel. When supported but a channel is not currently tuned to (if a content application is in foreground), the value of the field shall be null.

      MatterSpecification.v13.Cluster § 6.6.6.3

  • Readonlycommands: {
        changeChannelByNumber: Command<TypeFromFields, void, any>;
        skipChannel: Command<TypeFromFields, void, any>;
    }
    • ReadonlychangeChannelByNumber: Command<TypeFromFields, void, any>

      Change the channel to the channel with the given Number in the ChannelList attribute.

      MatterSpecification.v13.Cluster § 6.6.7.3

    • ReadonlyskipChannel: Command<TypeFromFields, void, any>

      This command provides channel up and channel down functionality, but allows channel index jumps of size Count.

      When the value of the increase or decrease is larger than the number of channels remaining in the given direction, then the behavior shall be to return to the beginning (or end) of the channel list and continue. For example, if the current channel is at index 0 and count value of -1 is given, then the current channel should change to the last channel.

      MatterSpecification.v13.Cluster § 6.6.7.4

  • Readonlyextensions: readonly [{
        component: {
            attributes: {
                channelList: Attribute<TypeFromFields[], any>;
            };
        };
        flags: {
            channelList: true;
        };
    }, {
        component: {
            attributes: {
                lineup: Attribute<TypeFromFields | null, any>;
            };
        };
        flags: {
            lineupInfo: true;
        };
    }, {
        component: {
            commands: {
                changeChannel: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            channelList: true;
        };
    }, {
        component: {
            commands: {
                changeChannel: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            lineupInfo: true;
        };
    }, {
        component: {
            commands: {
                getProgramGuide: Command<TypeFromFields, TypeFromFields, any>;
            };
        };
        flags: {
            electronicGuide: true;
        };
    }, {
        component: {
            commands: {
                cancelRecordProgram: Command<TypeFromFields, void, any>;
                recordProgram: Command<TypeFromFields, void, any>;
            };
        };
        flags: {
            electronicGuide: true;
            recordProgram: true;
        };
    }]

    This metadata controls which ChannelCluster elements matter.js activates for specific feature combinations.

  • Readonlyfeatures: {
        channelList: BitFlag;
        electronicGuide: BitFlag;
        lineupInfo: BitFlag;
        recordProgram: BitFlag;
    }
    • ReadonlychannelList: BitFlag

      ChannelList

      Provides list of available channels.

    • ReadonlyelectronicGuide: BitFlag

      ElectronicGuide

      Provides electronic program guide information.

    • ReadonlylineupInfo: BitFlag

      LineupInfo

      Provides lineup info, which is a reference to an external source of lineup information.

    • ReadonlyrecordProgram: BitFlag

      RecordProgram

      Provides ability to record program.

  • Readonlyid: 1284
  • Readonlyname: "Channel"
  • Readonlyrevision: 2