(self, value)
| 4116 | # Send methods |
| 4117 | |
| 4118 | def send(self, value): |
| 4119 | if isinstance(value, OrderMessage) and (value.fbe_type == self.ordermessage_model.fbe_type): |
| 4120 | return self.send_ordermessage(value) |
| 4121 | if isinstance(value, BalanceMessage) and (value.fbe_type == self.balancemessage_model.fbe_type): |
| 4122 | return self.send_balancemessage(value) |
| 4123 | if isinstance(value, AccountMessage) and (value.fbe_type == self.accountmessage_model.fbe_type): |
| 4124 | return self.send_accountmessage(value) |
| 4125 | return 0 |
| 4126 | |
| 4127 | def send_ordermessage(self, value): |
| 4128 | # Serialize the value into the FBE stream |
nothing calls this directly
no test coverage detected