Trait opentelemetry::runtime::Runtime[][src]

pub trait Runtime: Clone + Send + Sync + 'static {
    type Interval: Stream + Send;
    type Delay: Future + Send;
    fn interval(&self, duration: Duration) -> Self::Interval;
fn spawn(&self, future: BoxFuture<'static, ()>);
fn delay(&self, duration: Duration) -> Self::Delay; }
Expand description

A runtime is an abstraction of an async runtime like Tokio or async-std. It allows OpenTelemetry to work with any current and hopefully future runtime implementation.

Associated Types

A future stream, which returns items in a previously specified interval. The item type is not important.

A future, which resolves after a previously specified amount of time. The output type is not important.

Required methods

Create a [Stream][futures::Stream], which returns a new item every Duration.

Spawn a new task or thread, which executes the given future.

Note

This is mainly used to run batch span processing in the background. Note, that the function does not return a handle. OpenTelemetry will use a different way to wait for the future to finish when TracerProvider gets shutdown. At the moment this happens by blocking the current thread. This means runtime implementations need to make sure they can still execute the given future even if the main thread is blocked.

Return a new future, which resolves after the specified Duration.

Implementors

This is supported on crate feature rt-async-std only.
This is supported on crate feature rt-tokio only.
This is supported on crate feature rt-tokio-current-thread only.