[][src]Struct naia_shared::AckManager

pub struct AckManager { /* fields omitted */ }

Keeps track of sent & received packets, and contains ack information that is copied into the standard header on each outgoing packet

Implementations

impl AckManager[src]

pub fn new() -> Self[src]

Create a new AckManager

pub fn get_local_packet_index(&self) -> SequenceNumber[src]

Get the index of the next outgoing packet

pub fn process_incoming<T: EventType>(
    &mut self,
    header: &StandardHeader,
    event_manager: &mut EventManager<T>,
    actor_notifiable: &mut Option<&mut dyn ActorNotifiable>
)
[src]

Process an incoming packet, handle notifications of delivered / dropped packets

pub fn track_packet(
    &mut self,
    packet_type: PacketType,
    sequence_number: SequenceNumber
)
[src]

Records the packet with the given packet index

pub fn increment_local_packet_index(&mut self)[src]

Bumps the local packet index

Trait Implementations

impl Debug for AckManager[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,