{{newin|[[11.0]]|110|type=function}}
Queues SoundData for playback in a [[love.audio.newQueueableSource|queueable Source]].

This method requires the Source to be created via [[love.audio.newQueueableSource]].
== Function ==
=== Synopsis ===
<source lang="lua">
success = Source:queue( sounddata )
</source>
=== Arguments ===
{{param|SoundData|sounddata|The data to queue. The SoundData's sample rate, bit depth, and channel count must match the Source's.}}
=== Returns ===
{{param|boolean|success|True if the data was successfully queued for playback, false if there were no [[Source:getFreeBufferCount|available buffers]] to use for queueing.}}
== See Also ==
* [[parent::Source]]
* [[love.audio.newQueueableSource]]
* [[SourceType]]
[[Category:Functions]]
{{#set:Description=Queues SoundData for playback in a [[love.audio.newQueueableSource|queueable Source]].}}
== Other Languages ==
{{i18n|Source:queue}}