pub struct CtlCallbacks { /* private fields */ }Expand description
Callbacks implementation that bridges rns-net events into shared state + WebSocket broadcast.
Implementations§
Source§impl CtlCallbacks
impl CtlCallbacks
pub fn new(state: SharedState, ws_broadcast: WsBroadcast) -> Self
Trait Implementations§
Source§impl Callbacks for CtlCallbacks
impl Callbacks for CtlCallbacks
fn on_announce(&mut self, announced: AnnouncedIdentity)
fn on_path_updated(&mut self, _dest_hash: DestHash, _hops: u8)
fn on_local_delivery( &mut self, dest_hash: DestHash, raw: Vec<u8>, packet_hash: PacketHash, )
Source§fn on_proof(&mut self, dest_hash: DestHash, packet_hash: PacketHash, rtt: f64)
fn on_proof(&mut self, dest_hash: DestHash, packet_hash: PacketHash, rtt: f64)
Called when a delivery proof is received for a packet we sent.
rtt is the round-trip time in seconds.Source§fn on_proof_requested(
&mut self,
_dest_hash: DestHash,
_packet_hash: PacketHash,
) -> bool
fn on_proof_requested( &mut self, _dest_hash: DestHash, _packet_hash: PacketHash, ) -> bool
Called for ProveApp strategy: should we prove this incoming packet?
Return true to generate and send a proof, false to skip.
Source§fn on_link_established(&mut self, link_id: LinkId, rtt: f64, is_initiator: bool)
fn on_link_established(&mut self, link_id: LinkId, rtt: f64, is_initiator: bool)
Called when a link is fully established.
Source§fn on_link_closed(&mut self, link_id: LinkId, reason: Option<TeardownReason>)
fn on_link_closed(&mut self, link_id: LinkId, reason: Option<TeardownReason>)
Called when a link is closed.
Source§fn on_remote_identified(
&mut self,
link_id: LinkId,
identity_hash: IdentityHash,
_public_key: [u8; 64],
)
fn on_remote_identified( &mut self, link_id: LinkId, identity_hash: IdentityHash, _public_key: [u8; 64], )
Called when a remote peer identifies on a link.
Source§fn on_resource_received(
&mut self,
link_id: LinkId,
data: Vec<u8>,
metadata: Option<Vec<u8>>,
)
fn on_resource_received( &mut self, link_id: LinkId, data: Vec<u8>, metadata: Option<Vec<u8>>, )
Called when a resource transfer delivers data.
Source§fn on_resource_completed(&mut self, link_id: LinkId)
fn on_resource_completed(&mut self, link_id: LinkId)
Called when a resource transfer completes (sender-side proof validated).
Source§fn on_resource_failed(&mut self, link_id: LinkId, error: String)
fn on_resource_failed(&mut self, link_id: LinkId, error: String)
Called when a resource transfer fails.
Source§fn on_resource_progress(
&mut self,
link_id: LinkId,
received: usize,
total: usize,
)
fn on_resource_progress( &mut self, link_id: LinkId, received: usize, total: usize, )
Called with resource transfer progress updates.
Source§fn on_resource_accept_query(
&mut self,
_link_id: LinkId,
_resource_hash: Vec<u8>,
_transfer_size: u64,
_has_metadata: bool,
) -> bool
fn on_resource_accept_query( &mut self, _link_id: LinkId, _resource_hash: Vec<u8>, _transfer_size: u64, _has_metadata: bool, ) -> bool
Called to ask whether to accept an incoming resource (for AcceptApp strategy).
Return true to accept, false to reject.
Source§fn on_channel_message(
&mut self,
link_id: LinkId,
msgtype: u16,
payload: Vec<u8>,
)
fn on_channel_message( &mut self, link_id: LinkId, msgtype: u16, payload: Vec<u8>, )
Called when a channel message is received on a link.
Source§fn on_response(&mut self, link_id: LinkId, request_id: [u8; 16], data: Vec<u8>)
fn on_response(&mut self, link_id: LinkId, request_id: [u8; 16], data: Vec<u8>)
Called when a response is received on a link.
Source§fn on_interface_up(&mut self, _id: InterfaceId)
fn on_interface_up(&mut self, _id: InterfaceId)
Called when an interface comes online.
Source§fn on_interface_down(&mut self, _id: InterfaceId)
fn on_interface_down(&mut self, _id: InterfaceId)
Called when an interface goes offline.
Auto Trait Implementations§
impl Freeze for CtlCallbacks
impl RefUnwindSafe for CtlCallbacks
impl Send for CtlCallbacks
impl Sync for CtlCallbacks
impl Unpin for CtlCallbacks
impl UnwindSafe for CtlCallbacks
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more