- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究一种实现Stream
特征的类型。它基本上需要另外两个流,从它们中获取next()
值,然后根据某些条件返回一个next()
值本身。我想到了这样的代码设置:
impl Stream for HeartbeatStream {
type Item = char;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
// ...
// Dealing with heartbeat and no heartbeat
match &mut self.next_heartbeat {
Some(hb) => {
Pin::new(hb).poll(cx);
tokio::spawn(async move {
tokio::select! {
Some(char) = stream1.next(), if self.cooldown.map_or(true, |cd| since_last_signal > cd) => {
self.reset_last_signal_next_heartbeat();
return Poll::Ready(Some(char))
},
Some(char) = stream2.next(), if self.cooldown.map_or(true, |cd| since_last_signal > cd) => {
self.reset_last_signal_next_heartbeat();
return Poll::Ready(Some(char))
},
_ = hb => {
self.reset_last_signal_next_heartbeat();
return Poll::Ready(Some(self.char))
},
else => Poll::Ready(None),
}
});
},
None => {
...
}
}
Poll::Pending
}
}
Full code is shown here。
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter in function call due to conflicting requirements
--> src/heartbeat.rs:59:14
|
59 | match &mut self.next_heartbeat {
| ^^^^
|
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 52:2...
--> src/heartbeat.rs:52:2
|
52 | fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
| _____^
53 | | let mut stream1 = self.streams[0];
54 | | let mut stream2 = self.streams[1];
55 | | let since_last_signal = Instant::now().saturating_duration_since(
... |
97 | | Poll::Pending
98 | | }
| |_____^
note: ...so that the reference type `&mut std::pin::Pin<&mut heartbeat::HeartbeatStream>` does not outlive the data it points at
--> src/heartbeat.rs:59:14
|
59 | match &mut self.next_heartbeat {
| ^^^^
= note: but, the lifetime must be valid for the static lifetime...
note: ...so that the type `impl std::future::Future` will meet its required lifetime bounds
--> src/heartbeat.rs:62:5
|
62 | tokio::spawn(async move {
| ^^^^^^^^^^^^
error[E0495]: cannot infer an appropriate lifetime due to conflicting requirements
--> src/heartbeat.rs:62:29
|
62 | tokio::spawn(async move {
| _________________________________________^
63 | | tokio::select! {
64 | | Some(char) = stream1.next(), if self.cooldown.map_or(true, |cd| since_last_signal > cd) => {
65 | | self.reset_last_signal_next_heartbeat();
... |
77 | | }
78 | | });
| |_________________^
|
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 52:2...
--> src/heartbeat.rs:52:2
|
52 | fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
| _____^
53 | | let mut stream1 = self.streams[0];
54 | | let mut stream2 = self.streams[1];
55 | | let since_last_signal = Instant::now().saturating_duration_since(
... |
97 | | Poll::Pending
98 | | }
| |_____^
note: ...so that the types are compatible
--> src/heartbeat.rs:62:29
|
62 | tokio::spawn(async move {
| _________________________________________^
63 | | tokio::select! {
64 | | Some(char) = stream1.next(), if self.cooldown.map_or(true, |cd| since_last_signal > cd) => {
65 | | self.reset_last_signal_next_heartbeat();
... |
77 | | }
78 | | });
| |_________________^
= note: expected `std::pin::Pin<&mut heartbeat::HeartbeatStream>`
found `std::pin::Pin<&mut heartbeat::HeartbeatStream>`
= note: but, the lifetime must be valid for the static lifetime...
note: ...so that the type `impl std::future::Future` will meet its required lifetime bounds
--> src/heartbeat.rs:62:5
|
62 | tokio::spawn(async move {
| ^^^^^^^^^^^^
Full error code is shown here。
tokio::spawn()
外部以归入异步代码内部来解决。但是在这种情况下,它提示
self
对象。
最佳答案
Rust编译器在删除tokio::spawn()
之前不知道self
是否将加入。即使tokio::spawn()
返回了可以传递给JoinHandle
且从未连接的std::mem::forget()
,也使得闭包可以访问已删除的self
引用(这是不安全的)。这就是为什么编译器强制执行'static
生存期的原因。通常,“Rust的安全保证不包括析构函数将始终运行的保证”(source)。我建议您直接调用next_pool()
而不是next()
。
关于rust - 调用tokio::spawn时如何设置 `self`的适当生存期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64509968/
对于上下文,routes\index.js:87 在我的 exec 周围(同步)或在我的 exec 内部(异步)。 我在使用库 child_process、win-spawn 或 cross-spaw
我一直在尝试使用 Programming Erlang,版本 2(Joe Armstrong 的书)。我正在尝试解决第 13 章中的第一个问题。 作为解决问题的办法——我想到了这个—— -module
使用rust 0.12。 假设我有一个可发送的闭包,它的定义完全独立于应该在另一个任务中生成它的代码。 关闭类型: type closure_type = ||: 'static + Send; 代码
我相信我在某处读到使用 spawn/1 之间存在差异和 spawn/3谈到热重载,但我找不到有关该主题的任何完整信息。所以我想知道是否真的有区别,如果有,那是什么?一些例子会很棒。谢谢你。 最佳答案
我无法编译这个简单的程序 #include #include #include #include int main(){ printf("Spawning new process...\n")
NetworkObject.spawn()不起作用!我正在为游戏对象使用unity netcode,并尝试通过使用主机实例化它来产生一个游戏对象,然后在客户机上使用getComponent().spa
有没有办法确定所有生成的子进程何时关闭或退出? 例如,我如何确定没有更多进程可以运行,或者换句话说,我的 500 个子进程已全部退出? for (let index = 0; index {
我最近一直在开发一个按需构建服务器。构建服务器是一个 NodeJS/Express REST API,它本质上包装了 Angular CLI 和相关的构建工具,用于完成自定义的按需 Angular 应
我正在尝试使用外部包: npm install [python-shell][1] 现在,我只有基本的 js 文件和包附带的示例: console.log('hey in main.js') var
我正在尝试让 spawn 影响 rm -rf node_modules 后跟 npm install(在 Windows 7 上; nx 个命令由透明安装的 CygWin 提供。所有 nx 个命令都可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我正在尝试使用 spawn() 创建子进程有自己的终端 父.js: const spawn = require('child_process').spawn; console.log('started
我正在尝试使用 spawn 运行此命令 var args = ['-ss','00:00:15','-i',storage_path + doc.file_name,'-vframes','1','-
我开始使用 Erlang,在应用从 spawn/3 返回的 PID 时,可以帮助理解不同的结果。到process_info/1方法。 给定这个简单的代码,其中 a/0函数被导出,它只是调用 b/0 ,
我正在尝试运行一个非常简单的 tcl 脚本 package require Expect spawn sftp user@host 我得到的错误是 The system cannot find the
我使用 npm 全局安装了 phantomJs。为什么此代码不起作用? var page = require('webpage').create(); var spawn = require('ch
当我决定自学编程时,我从 Java 开始。尽管我熟悉编写简单的程序化软件(主要是用 PHP),但我最近开始意识到,对于更复杂的操作,我依赖对象。 我的第一个 Java 游戏通过实例化对象以随机速度在随
Julia 的run 函数似乎难以运行source。奇怪的是,如果我在 shell 中运行完全相同的命令,它不会有问题。 有没有办法从 Julia 以编程方式运行命令? julia> cmd = "/
当我运行 grunt-open 时,我不断收到“警告:Spawn ENOENT”问题。 我的设置 我的所有项目文件都在 Google 云端硬盘上。我正在直接对文件进行开发(使用 Google 云端硬盘
当我使用 100 个传感器运行时,我收到了 Erlang 的响应,所有进程都返回某个版本的 进程 中出现错误,退出值:{undef,[{main,watcher_start,[10,0],[]}]}
我是一名优秀的程序员,十分优秀!