kithara-queue 0.0.1-alpha1

AVQueuePlayer-analogue orchestration on top of kithara-play (queue, loader, navigation, crossfade-aware select)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! AVQueuePlayer-analogue orchestration layer on top of `kithara-play`.
//!
//! See `README.md` for the public API contract and migration notes.

mod config;
mod error;
mod loader;
mod navigation;
mod queue;
mod track;

pub use config::QueueConfig;
pub use error::QueueError;
pub use kithara_events::{QueueEvent, TrackId, TrackStatus};
pub use navigation::{NavigationState, RepeatMode};
pub use queue::{Queue, Transition};
pub use track::{TrackEntry, TrackSource};