Struct fidl_fuchsia_component::RealmProxy
source · pub struct RealmProxy { /* private fields */ }
Implementations§
source§impl RealmProxy
impl RealmProxy
sourcepub fn take_event_stream(&self) -> RealmEventStream
pub fn take_event_stream(&self) -> RealmEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
sourcepub fn open_controller(
&self,
child: &ChildRef,
controller: ServerEnd<ControllerMarker>,
) -> QueryResponseFut<RealmOpenControllerResult, DefaultFuchsiaResourceDialect>
pub fn open_controller( &self, child: &ChildRef, controller: ServerEnd<ControllerMarker>, ) -> QueryResponseFut<RealmOpenControllerResult, DefaultFuchsiaResourceDialect>
Operate on a child component. See documentation for [Controller
].
Errors:
INVALID_ARGUMENTS
:child
is not a valid child reference.INSTANCE_NOT_FOUND
:child
does not exist.INSTANCE_DIED
: This realm no longer exists.
sourcepub fn open_exposed_dir(
&self,
child: &ChildRef,
exposed_dir: ServerEnd<DirectoryMarker>,
) -> QueryResponseFut<RealmOpenExposedDirResult, DefaultFuchsiaResourceDialect>
pub fn open_exposed_dir( &self, child: &ChildRef, exposed_dir: ServerEnd<DirectoryMarker>, ) -> QueryResponseFut<RealmOpenExposedDirResult, DefaultFuchsiaResourceDialect>
Opens the exposed directory of a child component instance. When this
function successfully returns, exposed_dir
is bound to a directory
that contains the capabilities which the child exposed to its realm
via ComponentDecl.exposes
(specified via “expose” declarations in
the component’s manifest). The child component will not start as a
result of this call. Instead, starting will occur iff the parent binds
to one of the capabilities contained within exposed_dir
.
exposed_dir
is open as long as child
exists.
Errors:
INVALID_ARGUMENTS
:child
is not a valid child reference.INSTANCE_NOT_FOUND
:child
does not exist.INSTANCE_CANNOT_RESOLVE
:child
’s component declaration failed to resolve.INSTANCE_DIED
: This realm no longer exists.
sourcepub fn create_child(
&self,
collection: &CollectionRef,
decl: &Child,
args: CreateChildArgs,
) -> QueryResponseFut<RealmCreateChildResult, DefaultFuchsiaResourceDialect>
pub fn create_child( &self, collection: &CollectionRef, decl: &Child, args: CreateChildArgs, ) -> QueryResponseFut<RealmCreateChildResult, DefaultFuchsiaResourceDialect>
Creates a child component instance dynamically. When this function returns successfully, the instance exists, but it may not be running.
The environment of the child instance is determined by the environment
of the collection. decl
must not set environment
.
If decl.startup == EAGER
, or collection.durability == SINGLE_RUN
,
[CreateChild] will start the component and return once the component is
started. Otherwise, [CreateChild] will return immediately after creating
the component and will not start or resolve it.
Errors:
INVALID_ARGUMENTS
:collection
is not a valid reference orchild
is not a valid declaration.COLLECTION_NOT_FOUND
:collection
does not exist.INSTANCE_ALREADY_EXISTS
:decl.name
already exists incollection
.INSTANCE_CANNOT_RESOLVE
:child
’s component declaration failed to resolve in aSingleRun
collection.NO_SPACE
: Could not allocate storage for the new instance.INSTANCE_DIED
: This realm no longer exists.
sourcepub fn destroy_child(
&self,
child: &ChildRef,
) -> QueryResponseFut<RealmDestroyChildResult, DefaultFuchsiaResourceDialect>
pub fn destroy_child( &self, child: &ChildRef, ) -> QueryResponseFut<RealmDestroyChildResult, DefaultFuchsiaResourceDialect>
Destroys a dynamically-created component instance. When this function returns, the instance is destroyed and has stopped running. However, cleanup of the component’s resources (such as its isolated storage) may happen in the background after this function returns.
Errors:
INVALID_ARGUMENTS
:child
is not a valid reference or does not refer to a dynamic instance.INSTANCE_NOT_FOUND
:child
does not exist.COLLECTION_NOT_FOUND
:collection
does not exist.INSTANCE_DIED
: This realm no longer exists.
sourcepub fn list_children(
&self,
collection: &CollectionRef,
iter: ServerEnd<ChildIteratorMarker>,
) -> QueryResponseFut<RealmListChildrenResult, DefaultFuchsiaResourceDialect>
pub fn list_children( &self, collection: &CollectionRef, iter: ServerEnd<ChildIteratorMarker>, ) -> QueryResponseFut<RealmListChildrenResult, DefaultFuchsiaResourceDialect>
Returns an iterator that lists all instances in a collection.
NOTE: The results are not guaranteed to be consistent. Instances may be created or destroyed while the iterator is live, but those changes won’t be observed by the iterator after this method returns.
Errors:
INVALID_ARGUMENTS
:collection
is not a valid reference oriter
does not haveZX_RIGHT_WAIT
.COLLECTION_NOT_FOUND
:collection
does not exist.INSTANCE_DIED
: This realm no longer exists.- If
iter
does not have standard channel rights, this function may returnACCESS_DENIED
or component manager may closeiter
.
Trait Implementations§
source§impl Clone for RealmProxy
impl Clone for RealmProxy
source§fn clone(&self) -> RealmProxy
fn clone(&self) -> RealmProxy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RealmProxy
impl Debug for RealmProxy
source§impl Proxy for RealmProxy
impl Proxy for RealmProxy
§type Protocol = RealmMarker
type Protocol = RealmMarker
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
source§impl RealmProxyInterface for RealmProxy
impl RealmProxyInterface for RealmProxy
type OpenControllerResponseFut = QueryResponseFut<Result<(), Error>>
fn open_controller( &self, child: &ChildRef, controller: ServerEnd<ControllerMarker>, ) -> Self::OpenControllerResponseFut
type OpenExposedDirResponseFut = QueryResponseFut<Result<(), Error>>
fn open_exposed_dir( &self, child: &ChildRef, exposed_dir: ServerEnd<DirectoryMarker>, ) -> Self::OpenExposedDirResponseFut
type CreateChildResponseFut = QueryResponseFut<Result<(), Error>>
fn create_child( &self, collection: &CollectionRef, decl: &Child, args: CreateChildArgs, ) -> Self::CreateChildResponseFut
type DestroyChildResponseFut = QueryResponseFut<Result<(), Error>>
fn destroy_child(&self, child: &ChildRef) -> Self::DestroyChildResponseFut
type ListChildrenResponseFut = QueryResponseFut<Result<(), Error>>
fn list_children( &self, collection: &CollectionRef, iter: ServerEnd<ChildIteratorMarker>, ) -> Self::ListChildrenResponseFut
Auto Trait Implementations§
impl Freeze for RealmProxy
impl !RefUnwindSafe for RealmProxy
impl Send for RealmProxy
impl Sync for RealmProxy
impl Unpin for RealmProxy
impl !UnwindSafe for RealmProxy
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)