mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Make thread_picker non-blocking
This commit is contained in:
parent
2b4de41bf0
commit
dc8df7ba21
3 changed files with 54 additions and 47 deletions
|
@ -209,7 +209,7 @@ impl Client {
|
|||
}
|
||||
|
||||
/// Execute a RPC request on the debugger.
|
||||
fn call<R: crate::types::Request>(
|
||||
pub fn call<R: crate::types::Request>(
|
||||
&self,
|
||||
arguments: R::Arguments,
|
||||
) -> impl Future<Output = Result<Value>>
|
||||
|
@ -248,7 +248,7 @@ impl Client {
|
|||
}
|
||||
}
|
||||
|
||||
async fn request<R: crate::types::Request>(&self, params: R::Arguments) -> Result<R::Result>
|
||||
pub async fn request<R: crate::types::Request>(&self, params: R::Arguments) -> Result<R::Result>
|
||||
where
|
||||
R::Arguments: serde::Serialize,
|
||||
R::Result: core::fmt::Debug, // TODO: temporary
|
||||
|
@ -384,9 +384,8 @@ impl Client {
|
|||
Ok((response.stack_frames, response.total_frames))
|
||||
}
|
||||
|
||||
pub async fn threads(&self) -> Result<Vec<Thread>> {
|
||||
let response = self.request::<requests::Threads>(()).await?;
|
||||
Ok(response.threads)
|
||||
pub fn threads(&self) -> impl Future<Output = Result<Value>> {
|
||||
self.call::<requests::Threads>(())
|
||||
}
|
||||
|
||||
pub async fn scopes(&self, frame_id: usize) -> Result<Vec<Scope>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue