Henning Ottesen
Henning Ottesen
A common pattern when handling `Ctrl+C` is setting a flag in the handler and polling the flag somewhere else in the application. The current API does allow you to implement...
This is in response to concerns raised by #21. Currently we only allow the user to register a single handler that gets called for both `SIGINT` and `SIGTERM`. There is...
One problem that has been mentioned(#24, #22) is that there is currently no way to unregister a signal handler. I suggest we solve this by building a new abstraction. This...
Fn prevents the closure from mutating captured variables. Could we change it to FnMut to make the API easier to use in cases where we want to do this. This...
Rapidly creating NgxTurnstileComponents may cause the window callback to be received after components has been destroyed or on a different NgxTurnstileComponent. Example: ```typescript export class NgxTurnstileComponent implements AfterViewInit, OnDestroy {...