NicklasWallgren

Results 92 comments of NicklasWallgren

> > @gavinking Are you able to review this PR, or any of the other contributors? 🙂 > > Thanks > > Hi, I don't know what `@SuppressFBWarnings` is, nor...

Exactly, the value would be passed to the constructor. Additional improvements; 1. Use doctrine annotation to improve performance 2. Support aliases and use statement, so we don't need to state...

> Sorry if I'm wrong, but I don't think it can be implemented as Datadog does not provide an API for how users log in. You're able to choose the...

Are there any annotation similar to lomboks `NonNull` which adds `Objects.requireNonNull()` or similar?

Has there been any progress toward adding support for Java agents? @vjovanov @christianwimmer @alina-yur

Thanks for the reply! I wasn't aware that you were working on adding support for property matchers when I created this PR. I noticed https://github.com/gkampitakis/go-snaps/issues/18, and thought that I was...

You can create custom executor services with help of the `DbSchedulerCustomizer`, see the example below. ```java @Component @RequiredArgsConstructor public class DbSchedulerCustomizer implements com.github.kagkarlsson.scheduler.boot.config.DbSchedulerCustomizer { private final DbSchedulerProperties dbSchedulerProperties; @Override public...

We would also benefit from this, maybe `OpenTelemetry` could be a viable option instead of `Micrometer Tracing`? I don't think it's possible to implement tracing using the `StatsRegistry` in its...

I've created a basic proof of concept that divides `ExecutePicked` into two versions: `DefaultExecutePicked` and `ObservableExecutePicked`. You can review the changes in the commit linked below: https://github.com/NicklasWallgren/db-scheduler/commit/5e2d23dd71a0c3043ab59a2da1b282579a05f1cf However, a more...

> @NicklasWallgren Any chance you could try reimplementing your PoC using the new `SchedulerListener`? Great! It should possible to implement tracing with help of the new `SchedulerListener`. I've implemented a...