Module iced_runtime::task

source ·
Expand description

Create runtime tasks.

Structs§

  • A handle to a Task that can be used for aborting it.
  • A set of concurrent actions to be performed by the iced runtime.

Functions§

  • Creates a new Task that executes the Action returned by the closure and produces the values fed to the [mpsc::Sender].
  • Creates a new Task that executes the given Action and produces no output.
  • Returns the underlying [Stream] of the Task.
  • Creates a new Task that executes the Action returned by the closure and produces the value fed to the [oneshot::Sender].
  • Creates a new Task that runs the given [widget::Operation] and produces its output.