sqa-engine 0.2.2

High-performance realtime audio library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use sqa_jack;
error_chain! {
    types {
        Error, ErrorKind, ChainErr, EngineResult;
    }
    links {
        Jack(sqa_jack::errors::Error, sqa_jack::errors::ErrorKind);
    }
    errors {
        LimitExceeded {
            description("You have exceeded the channel or sender limit.")
                display("Engine channel or sender limit exceeded")
        }
        NoSuchChannel {
            display("No such channel.")
        }
    }
}