Is remaining time available as an event/hook?

Hy!

I get a feature request, where the user would like the PrintTimeGenius generated remaining time as a metric.
Is the "remaining time" is available as an event? Or maybe in;

##~~ ProgressPlugin mixin
def on_print_progress(self, storage, path, progress):

we could get it back somehow? (based on the docs not really, but it would be nice...)

I'm not aware of any event hooks that exist, but you might be able to register your own printer callback or potentially you/they could use the job API that already exists?

Or the injected propertiy self._printer.get_current_job?

Thanks for the info! self._printer.get_current_data() was the correct method what I was looking for.