Ryuu-64 / rgdx-audio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#rgdx-audio zh-cn

Codacy Badge

How to use?

class SoundExecutorExample {
    public static void main(String[] args) {
        ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(
                1, 1, 1, TimeUnit.MILLISECONDS,
                new ArrayBlockingQueue<>(32),
                new ThreadPoolExecutor.DiscardOldestPolicy()
        );

        SoundExecutor soundManager = new SoundExecutor(threadPoolExecutor);
    }
}

About

License:MIT License


Languages

Language:Java 100.0%