/// <summary>
 /// Sends the byte array message to the Python side channel. The message will be sent
 /// alongside the simulation step.
 /// </summary>
 /// <param name="data"> The byte array of data to send to Python.</param>
 public void SendRawBytes(byte[] data)
 {
     using (var msg = new OutgoingMessage())
     {
         msg.SetRawBytes(data);
         QueueMessageToSend(msg);
     }
 }