pulsar-binary-protocol-spec 0.0.1

Pulsar binary protocol specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::collections::BTreeMap;

use crate::{
    client_channel::FC_Sender,
    client_channel_messages::handler_reply_producer_channel_message::HandlerReplyProducerSendChannelMessage,
    types::SequenceId,
};

pub type PendingSequences = BTreeMap<SequenceId, PendingSequenceValue>;

pub type PendingSequenceValue = FC_Sender<HandlerReplyProducerSendChannelMessage>;