Slava Egorov
Slava Egorov
I think it makes sense to deprecate current interceptor functionality and align client and server interceptor APIs. Feel free to contribute PR with the implementation.
@iinozemtsev @athomas could you help with this? I think this is rather high-priority to get this fixed because it significantly degrades experience with developing against physical iOS devices
@leafpetersen @lrhn From my perspective this subset of changes does not really fundamentally change Dart language capabilities (pure Dart code remains isolated) so I would like to move forward, implement...
@ClementBeal > To visualize what would be the development of code with the shared memory, I wrote this quick sort with the shared fields and shared isolates. I just want...
@venbrinoDev whether or not we will allow sharing arbitrary mutable objects between isolate is still not fully decided. The first step we are planning to make - _shared **native** memory_...
@aam is working on this.
Looking at Procmon recording - there is a `CreateProcess` starting `WerFault.exe` at the very end of the recording. This looks indeed like crash. WER should be able to generate a...
The code [here](https://github.com/flutter/engine/blob/ae5c3603d013477d37ae301993fc0967d4ad7ed2/shell/platform/windows/compositor_opengl.cc#L163) calls `glBlitFramebuffer` without checking if it is available (it is in GLES 3.0, but not in GLES 2.0). Seems like an oversight. cc @loic-sharma who wrote this...
@OppositeDragon streaming server to client should sorta work, with some caveats (e.g. it buffers the whole stream in memory - so I would not recommend using it for any sort...
Hi @jwinarske. I am not entirely sure I understand the question. Could you clarify? If you just want to exchange messages inprocess then maybe you don't need full blown gRPC...