[−][src]Trait pubnub_hyper::core::Runtime
Runtime abstracts away the underlying runtime we use for task scheduling.
Required methods
fn spawn<F>(&self, future: F) where
F: Future<Output = ()> + Send + 'static,
F: Future<Output = ()> + Send + 'static,
Spawn a [Future
] to run as a task in some executor.