All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.guppy4j.sound.AudioStreamPlayer Maven / Gradle / Ivy

package org.guppy4j.sound;

import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.LineUnavailableException;
import java.io.IOException;

/**
 * Plays audio streams
 */
public interface AudioStreamPlayer {

    void play(AudioInputStream stream) throws LineUnavailableException, IOException;

    void stopAll();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy