Barış Yıldırım
Barış Yıldırım
> >I think all sentry targets should have ExceptionProcessor. > > > > > >So can both override/replace/reject the exception and send extra data to the exception for its scope....
> > >I think all sentry targets should have ExceptionProcessor. > > > > > > > > > >So can both override/replace/reject the exception and send extra data to...
try.haxe.org does not support hl/c.
> @barisyild Just fixed several bugs, including most of what you reported. Not sure about the lag; if it's still there you'll have to provide a sample. Bug still exists....
> That's fixed; make sure you pull the latest changes. > > (I've tested on Linux, in C++, Neko, HL, and HTML5. For HTML5 I used `trace()` instead of `println()`.)...
# Bug ## Code ```haxe public function new() { super(); Sys.println("Started!"); Assets.loadLibrary ("nolibrarywiththisname").onError(function (lib:AssetLibrary) { Sys.println("Error loading library!"); }).onComplete (function (lib:AssetLibrary) { Sys.println("Library loaded successfully!"); }); } ``` ## Output:...
> That looks exactly like the first error I fixed. The pool would shut down a bit too soon, so the error wouldn't be printed until the pool restarted. >...
> As stated, I've tried this plenty of times, on plenty of targets, and cannot reproduce the error. > > Another thing: your `new()` function doesn't seem to call `super()`....
> You know, that first `lib:AssetLibrary` should be `error:String` instead. I always fixed it on my end without bothering to mention it, but that might explain why mine works. When...
There is still issue in my tests, but it's incredibly rare. Could the problem be due to lack of mutex? It seems like other threads are accessing the __queuedExitEvents value.