Dominic Fox

Results 3 comments of Dominic Fox

Tricky. I'd be minded to write a custom Jackson serialiser/deserialiser for it. It's not obvious what the representation should be - ``` json { "left": "leftValue" } ``` or ```...

It's a (very peculiar) peculiarity of type erasure. I still don't quite understand why Selectors.roundRobin() works, while pulling the selector created in Selectors.roundRobin() inline like so: ```java @Test public void...

(the answer to "why does this happen" is that the generic ` Selector roundRobin()` method actually creates, after erasure of `T`, a `Selector`, which expects an array of `Object[]` and...