James Hickey

Results 136 comments of James Hickey
trafficstars

Thanks for the kind words about the project! I'm not familiar with the specific library for POstgreSQL.NodaTime here. I'll have to look into that and see what the options are.......

FYI, anyone wanting this - I have some relevant comments in #209 around the mechanics and public interface for this. TLDR; -> eventually I want to remove `QueueCancellableInvocable` and just...

As per the comment above: - Returning the token is a leaky abstraction - There are some potential existing concurrency issues that arise from that method too - There's a...

While TimeSpan is one way, ultimately using cron is industry standard. I'd need a really solid reason to want to add TimeSpan support vs. just using cron (other than the...

You can technically try this using the CRON method. That's how I've done it - works well. What do you think @kajbonfils ?

No, that doesn't exist. What you could do is create a database table, for example, store the date of when a particular API call + other needed data needs to...

Did you make sure to register the `WidgetList` class (or others) as a transient service? Not sure what else it might be?

The ` List` in the listener is re-created most likely because the listener class itself `WidgetList` is configured as a transient or scoped service? What you'll need to do is...

You could make the blazor component a listener, but make sure that it's a singleton service. I'm not familiar enough with Blazor to know if that makes sense though. Otherwise,...