pub struct ObserverProxy { /* private fields */ }
Implementations§
Source§impl ObserverProxy
impl ObserverProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.audio.device/Observer.
Sourcepub fn take_event_stream(&self) -> ObserverEventStream
pub fn take_event_stream(&self) -> ObserverEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn get_elements(
&self,
) -> QueryResponseFut<ReaderGetElementsResult, DefaultFuchsiaResourceDialect>
pub fn get_elements( &self, ) -> QueryResponseFut<ReaderGetElementsResult, DefaultFuchsiaResourceDialect>
Returns a vector of supported processing elements. This vector must include one or more processing elements.
Sourcepub fn watch_element_state(
&self,
processing_element_id: u64,
) -> QueryResponseFut<ElementState, DefaultFuchsiaResourceDialect>
pub fn watch_element_state( &self, processing_element_id: u64, ) -> QueryResponseFut<ElementState, DefaultFuchsiaResourceDialect>
Get the processing element state via a hanging get.
For a given processing_element_id
, the driver will immediately reply to the first
WatchElementState
sent by the client. The driver will not respond to subsequent client
WatchElementState
calls for that processing_element_id
until any portion of the
ElementState
has changed from what was most recently reported for that element.
The driver will close the protocol channel with an error of ZX_ERR_INVALID_ARGS
, if
processing_element_id
does not match an ElementId returned by GetElements
.
The driver will close the protocol channel with an error of ZX_ERR_BAD_STATE
, if this
method is called again while there is already a pending WatchElementState
for this client
and processing_element_id
.
Sourcepub fn get_topologies(
&self,
) -> QueryResponseFut<ReaderGetTopologiesResult, DefaultFuchsiaResourceDialect>
pub fn get_topologies( &self, ) -> QueryResponseFut<ReaderGetTopologiesResult, DefaultFuchsiaResourceDialect>
Returns a vector of supported topologies.
This vector must include one or more topologies.
If more than one topology is returned, then the client may select any topology from the
list by calling SetTopology
.
If only one topology is returned, SetTopology
can still be called but causes no change.
Each Element must be included in at least one Topology, but need not be included in every Topology.
Sourcepub fn watch_topology(
&self,
) -> QueryResponseFut<u64, DefaultFuchsiaResourceDialect>
pub fn watch_topology( &self, ) -> QueryResponseFut<u64, DefaultFuchsiaResourceDialect>
Get the current topology via a hanging get.
The driver will immediately reply to the first WatchTopology
sent by each client.
The driver will not respond to subsequent WatchTopology
calls from that client until the
signal processing topology changes; this occurs as a result of a SetTopology
call.
The driver will close the protocol channel with an error of ZX_ERR_BAD_STATE
, if this
method is called again while there is already a pending WatchTopology
for this client.
Sourcepub fn watch_plug_state(
&self,
) -> QueryResponseFut<ObserverWatchPlugStateResult, DefaultFuchsiaResourceDialect>
pub fn watch_plug_state( &self, ) -> QueryResponseFut<ObserverWatchPlugStateResult, DefaultFuchsiaResourceDialect>
Request notification of any change to the device’s plug state. When called for the first time, it will return immediately.
Should only be called for Codec devices.
Sourcepub fn get_reference_clock(
&self,
) -> QueryResponseFut<ObserverGetReferenceClockResult, DefaultFuchsiaResourceDialect>
pub fn get_reference_clock( &self, ) -> QueryResponseFut<ObserverGetReferenceClockResult, DefaultFuchsiaResourceDialect>
Retrieve the device’s reference clock.
This clock will be in the domain specified in the device’s Info
table.
Should only be called for Composite devices.
Trait Implementations§
Source§impl Clone for ObserverProxy
impl Clone for ObserverProxy
Source§fn clone(&self) -> ObserverProxy
fn clone(&self) -> ObserverProxy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ObserverProxy
impl Debug for ObserverProxy
Source§impl ObserverProxyInterface for ObserverProxy
impl ObserverProxyInterface for ObserverProxy
type GetElementsResponseFut = QueryResponseFut<Result<Vec<Element>, i32>>
type WatchElementStateResponseFut = QueryResponseFut<ElementState>
type GetTopologiesResponseFut = QueryResponseFut<Result<Vec<Topology>, i32>>
type WatchTopologyResponseFut = QueryResponseFut<u64>
type WatchPlugStateResponseFut = QueryResponseFut<Result<ObserverWatchPlugStateResponse, ObserverWatchPlugStateError>>
type GetReferenceClockResponseFut = QueryResponseFut<Result<ObserverGetReferenceClockResponse, ObserverGetReferenceClockError>>
fn get_elements(&self) -> Self::GetElementsResponseFut
fn watch_element_state( &self, processing_element_id: u64, ) -> Self::WatchElementStateResponseFut
fn get_topologies(&self) -> Self::GetTopologiesResponseFut
fn watch_topology(&self) -> Self::WatchTopologyResponseFut
fn watch_plug_state(&self) -> Self::WatchPlugStateResponseFut
fn get_reference_clock(&self) -> Self::GetReferenceClockResponseFut
Source§impl Proxy for ObserverProxy
impl Proxy for ObserverProxy
Source§type Protocol = ObserverMarker
type Protocol = ObserverMarker
Proxy
controls.