Kyle Maxwell
Kyle Maxwell
## Expected Behavior Client should return an empty response. ## Current Behavior Client blocks forever, even with timeouts set.. ## Possible Solution Will investigate. ## Steps to Reproduce ``` package...
This allows you to turn on the grpc-web-like behavior of having clients and interfaces accept partials, without fully commiting to something like useOptionals=all where you have question-marks on all of...
Snow leopard, ant, ivy, maven installed. http://gist.github.com/359252
This is a reduction of the longstanding #143 to do the minimum I actually need: letting me put []byte's into and out of values.
Depends on (extends) #356's []byte support. I haven't figured out a nice way to polyfill this into WebAssembly.compile yet, but this at least allows you to PumpMessageLoop at all. WebAssembly.compile...
The $types are getting in the way of usability of the code we're writing, but the registry itself is useful.
``` interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } ``` There's an option to include a metadata?: Metadata arg, but only under certain providers. There's also no...
Protocol-specific middleware means writing O(protocol*middleware) adapters. By making protocol-agnostic middleware, we enable writing O(protocol+middleware) adapters. Fewer adapters makes making maintenance of existing adapters easier, and makes it easier to add...