pub struct ControllerPool { /* private fields */ }
Implementations§
Source§impl ControllerPool
impl ControllerPool
pub fn new() -> Self
Sourcepub fn connected(&self, stream: PeerManagerRequestStream)
pub fn connected(&self, stream: PeerManagerRequestStream)
Called when a client connects to the PeerManager service. Stores the control_handle associated with the request stream and spawns a task to handle incoming requests.
There can only be one active client at a time. As such, any client connections thereafter will be dropped.
Sourcepub fn peer_connected(&self, peer: DetachableWeak<PeerId, Peer>)
pub fn peer_connected(&self, peer: DetachableWeak<PeerId, Peer>)
Stores the weak reference to the A2DP peer and notifies the control handle of the connection. This should be called once for every connected remote peer.
Auto Trait Implementations§
impl Freeze for ControllerPool
impl !RefUnwindSafe for ControllerPool
impl Send for ControllerPool
impl Sync for ControllerPool
impl Unpin for ControllerPool
impl !UnwindSafe for ControllerPool
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