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. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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.
Beta Was this translation helpful? Give feedback.
All reactions