Jake Wharton

Results 1660 comments of Jake Wharton

Thanks! I'll take a look soon.

We don't offer a way to handle this automatically including deserialization of these events (usually people wanting this use websockets which we do plan to support). That said, I'm pretty...

Spec https://html.spec.whatwg.org/multipage/comms.html Info: - http://www.html5rocks.com/en/tutorials/eventsource/basics/ - https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events - http://caniuse.com/#feat=eventsource An interesting spec. The "data:" prefix seems wasteful, but hopefully no one has a newline-laden message body. I would have preferred...

Been thinking about this for a while, and I have an idea of the approach I want to take when I get around to implementing. Merely writing it down so...

No timeline. Unsure if we'll ever support it natively. On Wed, Aug 17, 2016 at 12:03 PM Keith Murray [email protected] wrote: > Is this still in the pipeline? If so...

You can do this with streams by skipping a random amount and invoking findFirst().

Other things to consider: * You're including the Gson TypeAdapter lookup and kotlinx.serialization KSerializer lookup in the loop. This will skew numbers. Look it up once outside the measurement. If...

Now that Kotlin 2.0 is out do you think this is something that could be put into future consideration?

Since these characters can only appear in strings, it should be a relatively easy transformation to do this as a post-processing step regardless of whether this becomes a first-party feature...

`val` means read only. Neither the reference it points to nor the returned reference itself has to be immutable. ```kotlin class NotImmutable { val a: MutableList get() = ArrayList() }...