Listening to event or changes Hangfire Job in a server filter

Is there a good way of propagating up events or changes from within a job.

I know we can kinda inject the perform context into a job, but if I wanted to change a job parameter or add a job parameter and handle the effect in a filter, is there a good mechanism for that?

The specific use case is that I want to increment a counter from within a job and pick up the event from within a server filter. Has anyone done something like this before?