Blynk.virtualWrite() inside a BLYNK_WRITE() call

Hello, is it recommended, feasible, or what limitations should I consider when using Blynk.virtualWrite() inside a BLYNK_WRITE() call?

Something like this:

BLYNK_WRITE(V29)  // schedule how many transitions from app
{
  transitions =  param.asInt();
  Blynk.virtualWrite(V57, schedule_sw);
  Blynk.setProperty(V29, "isHidden", "true");
}

Thanks for your comments,
Ben

It should be fine, provided you don’t do more than 10 virtual writes or set properties.

Pete.

Thanks Pete. I will try.