Skip to content

Commit

Permalink
[ISSUE #2277]🚀AckMessageProcessor and BroadcastOffsetManager add star…
Browse files Browse the repository at this point in the history
…t method (#2278)
  • Loading branch information
mxsm authored Jan 16, 2025
1 parent 1c3b29c commit a3e692a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ pub struct BroadcastOffsetManager {}

#[allow(unused_variables)]
impl BroadcastOffsetManager {
pub fn start(&mut self) {
warn!("BroadcastOffsetManager started is not implemented");
}

pub fn query_init_offset(
&self,
topic: &str,
Expand Down
4 changes: 4 additions & 0 deletions rocketmq-broker/src/processor/ack_message_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ where
)),
}
}

pub fn start(&mut self) {
warn!("AckMessageProcessor started unimplemented, need to be implemented");
}
}

impl<MS> AckMessageProcessor<MS>
Expand Down

0 comments on commit a3e692a

Please sign in to comment.