pub fn process_items_sync<T, U, F>( runtime: &Runtime, items: Vec<T>, processor: F, ) -> Vec<U>where T: Send + 'static, U: Send + 'static, F: Fn(T, &Runtime) -> U + Send + Sync + Clone + 'static,