File tree Expand file tree Collapse file tree
crates/core/src/subscription Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -979,21 +979,6 @@ impl SubscriptionManager {
979979 & self . indexes
980980 }
981981
982- /*
983- pub fn send_client_message(
984- &self,
985- recipient: Arc<ClientConnectionSender>,
986- message: impl Into<SerializableMessage>,
987- ) {
988- self.send_worker_queue
989- .send(SendWorkerMessage::SendMessage {
990- recipient,
991- message: message.into(),
992- })
993- .expect("send worker has panicked, or otherwise dropped its recv queue!")
994- }
995- */
996-
997982 /// This method takes a set of delta tables,
998983 /// evaluates only the necessary queries for those delta tables,
999984 /// and then sends the results to each client.
@@ -1151,7 +1136,6 @@ impl SubscriptionManager {
11511136 // then return ASAP in order to unlock the datastore and start running the next transaction.
11521137 // See comment on the `send_worker_tx` field in [`SubscriptionManager`] for more motivation.
11531138 self . send_worker_queue
1154- . clone ( )
11551139 . send ( SendWorkerMessage :: Broadcast ( ComputedQueries {
11561140 updates,
11571141 errs,
You can’t perform that action at this time.
0 commit comments