Right now we have a limitation of 1 concurrent message/notification per (transport layer) message.
JSON-RPC allows us to batch those messages into one using arrays.
Follow the spec and implement. Then include the batching strategy inside the implementation. This should be transparent for every implementation that is already working due to the async nature of JSON-RPC
Right now we have a limitation of 1 concurrent message/notification per (transport layer) message.
JSON-RPC allows us to batch those messages into one using arrays.
Follow the spec and implement. Then include the batching strategy inside the implementation. This should be transparent for every implementation that is already working due to the async nature of JSON-RPC