JackClient -> JackConnection

This commit is contained in:
🪞👃🪞 2024-12-29 15:32:39 +01:00
parent c3f9aa7549
commit 411d4bc91d
23 changed files with 55 additions and 51 deletions

View file

@ -82,7 +82,7 @@ pub struct ClockModel {
pub chunk: Arc<AtomicUsize>,
}
from!(|jack: &Arc<RwLock<JackClient>>| ClockModel = {
from!(|jack: &Arc<RwLock<JackConnection>>| ClockModel = {
let jack = jack.read().unwrap();
let chunk = jack.client().buffer_size();
let transport = jack.client().transport();