You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an implementation, where the communication protocol is based on JSON RPC. The implementation is a little different, since there is a "separator character" (0x00/NULL) between the messages being received and transmitted.
Is it possible to extend the existing JSON RPC TCP implementation to parse/ignore the separator char when receiving and inject it after transmitting messages?
The text was updated successfully, but these errors were encountered:
@sbendt not without a code change. the event emitters (Socket / Net) aren't exposed, so you can't use a Transform stream to pipe the answer, cork the stream until you see a null character, then uncork it.
I have an implementation, where the communication protocol is based on JSON RPC. The implementation is a little different, since there is a "separator character" (0x00/NULL) between the messages being received and transmitted.
Is it possible to extend the existing JSON RPC TCP implementation to parse/ignore the separator char when receiving and inject it after transmitting messages?
The text was updated successfully, but these errors were encountered: