Accessing Schedule Value in Effect Invocation

I'm running an Effect with a Cron expression like the following

Effect.schedule( 
        insertJob(stuff),
        Schedule.cron(some_cron_expression),
      )


Is there a way for the insertJob effect to read the current schedule value on each invocation?
Was this page helpful?