pulsar-binary-protocol-spec 0.0.1

Pulsar binary protocol specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::commands::{AckCommand, AckResponseCommand};

use super::Respond;

pub struct ConsumerAckRespond {}
impl Respond for ConsumerAckRespond {
    type Request = AckCommand;
    type Response = AckResponseCommand;
    type Error = ConsumerAckRespondError;
}

make_x_respond_error!(
    ConsumerAck;
);