File tree Expand file tree Collapse file tree
rocketmq-broker/src/processor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17+ use rocketmq_remoting:: code:: request_code:: RequestCode ;
18+ use rocketmq_remoting:: net:: channel:: Channel ;
1719use rocketmq_remoting:: protocol:: remoting_command:: RemotingCommand ;
1820use rocketmq_remoting:: runtime:: connection_handler_context:: ConnectionHandlerContext ;
1921
2022#[ derive( Default ) ]
2123pub struct AckMessageProcessor { }
2224
2325impl AckMessageProcessor {
24- fn process_request (
25- & self ,
26+ pub async fn process_request (
27+ & mut self ,
28+ _channel : Channel ,
2629 _ctx : ConnectionHandlerContext ,
30+ _request_code : RequestCode ,
2731 _request : RemotingCommand ,
2832 ) -> crate :: Result < Option < RemotingCommand > > {
2933 unimplemented ! ( "AckMessageProcessor process_request" )
You can’t perform that action at this time.
0 commit comments