AudioOutputStream Class
- java.
lang. Object - com.
microsoft. cognitiveservices. speech. audio. AudioOutputStream
- com.
Implements
public class AudioOutputStream
implements java.lang.AutoCloseable
Represents audio output stream used for custom audio output configurations. Note: close() must be called in order to release underlying resources held by the object. Updated in version 1.7.0
Method Summary
Modifier and Type | Method and Description |
---|---|
void |
close()
Explicitly frees any external resource attached to the object Note: close() must be called in order to release underlying resources held by the object. |
static
Pull |
createPullStream()
Creates a memory backed Pull |
static
Push |
createPushStream(PushAudioOutputStreamCallback callback)
Creates a Push |
Safe |
getImpl()
Returns the audio output configuration. |
Methods inherited from java.lang.Object
Method Details
close
public void close()
Explicitly frees any external resource attached to the object Note: close() must be called in order to release underlying resources held by the object.
createPullStream
public static PullAudioOutputStream createPullStream()
Creates a memory backed PullAudioOutputStream.
Returns:
createPushStream
public static PushAudioOutputStream createPushStream(PushAudioOutputStreamCallback callback)
Creates a PushAudioOutputStream that delegates to the specified callback interface for write() and close() methods. Added in version 1.7.0
Parameters:
Returns:
getImpl
public SafeHandle getImpl()
Returns the audio output configuration.
Returns:
Applies to
Azure SDK for Java