M409 - multiple keys at once?
-
(In RRF3, of course) Is there a way (or could there be a way) to request multiple object model keys with a single M409 request?
For example, I'd like to retrieve both the job.duration and the job.file.simulatedTime, but due to limited buffer, I don't want all the other stuff in 'job' and I'd prefer not to make multiple queries.
Perhaps something like this:
M409 K"job.duration","job.file.simulatedTime"
Which might return something like:
{ "job.duration" : 3622, "job.file.simulatedTime" : 4786 }
So far, the best I've been able to come up with is m409 k"job" f"d3" - which gives me the information I want, and limits how "deep" the returned info goes, but it's still quite a bit of data and could easily exceed some buffers.
Thanks
Gary