Replies: 2 comments
|
After a read through the codebase, I find the async use is to asynchronously generate events on the produce and also consume on the consumer side. |
|
Being an event driven framework.. I expect most, if not all, of events (trades, bars, order updates, etc) to come from some sort of external source either via polling some service, or through a websocket, or a database, etc. |
Uh oh!
There was an error while loading. Please reload this page.
Are we expecting a lot of IO operations? Even so, making use of a threadpool for IO shall suffice.
Interested to know the motive behind going with eventloop.
All reactions