On Fri, Jul 30, 2021 at 06:15 AM, dent wrote:
ed about the IB wire protocol but never
Don't think it's documented somewhere.
For a Typescript port I have reverse engineered it form the Java code. The protocol level would be this:
?
socket.ts handling TCP connection and version handshake.
decoder.ts handling de-serialization from tokens.
encoder.ts handling serialization to token.
controller.ts doing queue handling (stuff starting/stopping queue on connect/disconnect or enforcing the rate limit and such).
But better to use the official Java codes a reference, Typescript might just be easier to read to get an idea.
?