pub trait RfqWebsocketPublisher: Send + Sync {
// Required methods
fn publish_indicative_market_data(&self, update: WsIndicativeMarketData);
fn publish_rfq_quotes(&self, quotes: WsRfqQuotes);
fn publish_to_channel(&self, channel: &str, message: WsMessage);
}Expand description
Publishes RFQ WebSocket updates to taker-facing subscribers.