Plugins
Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0
FixedChannelBatch
Ordered channel names and handles used by the fixed-channel batch APIs.
Declaration
struct FixedChannelBatch {
std::vector<std::string> channels;
std::vector<FixedChannelHandle> handles;
[[nodiscard]] size_t size() const noexcept { return handles.size(); }
[[nodiscard]] bool empty() const noexcept { return handles.empty(); }
};