Frank Alvarez

Results 38 comments of Frank Alvarez

FYI the test also passes if you keep the FrozenSet and use different parameters like so: ```chasrp ServiceCollection.AddNCronJob(n => n.AddJob( p => p.WithCronExpression("* * * * *").WithParameter("First") .And .WithCronExpression("* *...

How would you want users to configure their TimeZone? In appSettings (IConfiguration) or through the JobOptionsBuilder? Something like this: ```c# builder.Services.AddNCronJob(n => n .AddJob( p => p.WithCronExpression("*/2 * * *...

Yeah I thought about just doing a simple conversion but there's a bunch of nuance with time-zone changes, leap years etc. that you can avoid. I don't know this for...

[PR-85](https://github.com/NCronJob-Dev/NCronJob/pull/85) fixes this issue

Yes! This feature is indeed an epic and should be approached in modular packages. I propose two potential strategies: 1. **Embedded UI for Monitoring**: Introduce an extension that enables developers...

[Jobs Commands Management branch](https://github.com/NCronJob-Dev/NCronJob/tree/job-management) More details here: https://github.com/NCronJob-Dev/NCronJob/discussions/25#discussioncomment-9813281

This is a good idea and enhancement! I see the value in supporting tasks that run once at the beginning of the lifecycle, such as migrations or data cleanup. However,...

Yes it's very similar. If we want to collect these and run before any other job type however, we can add a property to JobDefinition that identifies this type of...

@linkdotnet for clarification, jobs we want to run at startup, like migrations, implies that they need to start and complete before anything else. The signature you designed assumes both a...