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::{SubscribeCommand, SuccessCommand};

use super::Respond;

pub struct SessionCreateConsumerRespond {}
impl Respond for SessionCreateConsumerRespond {
    type Request = SubscribeCommand;
    type Response = SuccessCommand;
    type Error = SessionCreateConsumerRespondError;
}

make_x_respond_error!(
    SessionCreateConsumer;
);