Gavin King

Results 1199 comments of Gavin King

@FroMage > that doesn't mean it shouldn't be possible to turn a String into a byte array Right, I've always just felt a bit *weird* about the fact that we...

> for some reason I've always felt a bit scared of that module Looking over it now, honestly I don't know why. I think I'm still stuck in the past...

> Well I think with the API I just proposed, performance is going to be just fine Oh, well now I'm not so sure. There doesn't seem any way in...

So, look, unless someone wants to speak up in favor of adding this in the form it is currently implemented (a way to get from `String`s to `Array`a and vice...

Folks I already gave up on doing it at the single Character level after seeing how difficult it was to implement that efficiently in terms of Java APIs.

Well, but we could still add it for Strings.

Note that the Javadoc does say: ``` @return Class[] of Exceptions ``` But I have no clue how to interpret this cryptic statement. Is this supposed to imply that the...

Actually, thinking through how this must be implemented, I suppose that it probably _is_ only subtypes of `Exception` allowed here. Otherwise you would need to catch `Trhowable` in an interceptor,...

> Otherwise you would need to catch `Throwable` in an interceptor, which sounds like a bad idea. Well, I checked, and apparently this is exactly what Quarkus does. So apparently...

Oh, wait, wait, wait. Perhaps I've been a bit dense here. Perhaps `rollbackOn` and `dontRollbackOn` are intended to accept marker _interfaces_ as well as exception classes. If that's the case...