mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Add a thread safety warning to write_object()
This commit is contained in:
@@ -41,6 +41,10 @@ using InputAdapter = bitsery::InputBufferAdapter<B>;
|
|||||||
* @param buffer The buffer to write to. This is useful for sending audio and
|
* @param buffer The buffer to write to. This is useful for sending audio and
|
||||||
* chunk data since that can vary in size by a lot.
|
* chunk data since that can vary in size by a lot.
|
||||||
*
|
*
|
||||||
|
* @warning This operation is not atomic, and calling this function with the
|
||||||
|
* same socket from multiple threads at once will cause issues with the
|
||||||
|
* packets arriving out of order.
|
||||||
|
*
|
||||||
* @relates read_object
|
* @relates read_object
|
||||||
*/
|
*/
|
||||||
template <typename T, typename Socket>
|
template <typename T, typename Socket>
|
||||||
|
|||||||
Reference in New Issue
Block a user