template <>

class WireServer

Defined at line 897 of file fidling/gen/sdk/fidl/fuchsia.ui.test.scene/fuchsia.ui.test.scene/cpp/fidl/fuchsia.ui.test.scene/cpp/wire_messaging.h

Pure-virtual interface to be implemented by a server.

This interface uses typed channels (i.e. |::fidl::ClientEnd

<

::fuchsia_ui_test_scene::Controller>|

and |::fidl::ServerEnd

<

::fuchsia_ui_test_scene::Controller>|).

Public Methods

void AttachClientView (::fuchsia_ui_test_scene::wire::ControllerAttachClientViewRequest * request, AttachClientViewCompleter::Sync & completer)

*** NOTE: `ViewProvider` is no longer the preferred way for a parent

and child view to agree on a ViewportCreationToken / ViewCreationToken

pair. Flatland-based clients are encouraged to use `PresentView` (below)

instead of `AttachClientView`.

Elicits the server to request a view using the

`fuchsia.ui.app.ViewProvider` handle provided, and attach it to the

scene.

RETURN VALUE

This method returns the KOID for the client view's `ViewRef`.

SYNCHRONIZATION

This call returns as soon as the client `ViewRef` is available. Note

that this signal does NOT necessarily indicate that the view has been

attached to the scene.

LIFE CYCLE

Clients may drop the `Controller` connection once `AttachClientView` has

returned.

void PresentClientView (::fuchsia_ui_test_scene::wire::ControllerPresentClientViewRequest * request, PresentClientViewCompleter::Sync & completer)

Elicits the server to create a viewport using `viewport_creation_token`.

LIFE CYCLE

Clients may drop the `Controller` connection once `PresentClientView` has

returned.

void RegisterViewTreeWatcher (::fuchsia_ui_test_scene::wire::ControllerRegisterViewTreeWatcherRequest * request, RegisterViewTreeWatcherCompleter::Sync & completer)

Registers a `ViewTreeWatcher` on the client's behalf.

The `ViewTreeWatcher` registered on behalf of the client will currently

be scoped globally; we intend to restrict the scope to the client view's

subtree as soon as it's feasible to do so.

For more information on geometry observation, see the documentation

in //sdk/fidl/fuchsia.ui.observation.geometry/watcher.fidl.

void WatchViewPresentation (WatchViewPresentationCompleter::Sync & completer)

A hanging get to watch for updates to view presentation.

Callers can use this method to wait until a `ClientView` has

`Present()`-ed through any of the following view presentation methods:

* `fuchsia.ui.test.scene.Controller/AttachClientView()`

* `fuchsia.ui.test.scene.Controller/PresentClientView()`

* `fuchsia.element.GraphicalPresenter/PresentView()`

Callers should expect to call this method once for each view they

expect to wait for.

Note that callers must take care when interleaving calls, since

this method has no way to

a) associate a `Present()` with a specific `ClientView`, or

b) associate a `Present()` with an `AttachClientView()` call, rather

than a `PresentClientView()` or `PresentView` call.

It is invalid to call `WatchViewPresentation` while a previous call is

still pending; subsequent requests will be ignored.

void WireServer ()

Defined at line 900 of file fidling/gen/sdk/fidl/fuchsia.ui.test.scene/fuchsia.ui.test.scene/cpp/fidl/fuchsia.ui.test.scene/cpp/wire_messaging.h

Handler bind_handler (async_dispatcher_t * dispatcher)

|bind_handler| returns a handler that binds incoming connections to this

server implementation.

The returned handler borrows the server instance.

The server must outlive the provided |dispatcher|. Only after

the dispatcher is shutdown will it be safe to destroy the servers.

The server should not be moved.

void ~WireServer ()

Defined at line 901 of file fidling/gen/sdk/fidl/fuchsia.ui.test.scene/fuchsia.ui.test.scene/cpp/fidl/fuchsia.ui.test.scene/cpp/wire_messaging.h