Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing "topics in" support #14

Open
jamesmunns opened this issue Jan 4, 2025 · 1 comment
Open

Missing "topics in" support #14

jamesmunns opened this issue Jan 4, 2025 · 1 comment

Comments

@jamesmunns
Copy link
Contributor

We probably need:

  • A specific SDK method for topics in listing, like we do for topics out
  • a CLI method for listing this (or make sure it's shown somewhere)
  • Update the GUI to show this on one of the pages

We do expose this data through the "get schemas" method, but it's not consistent elsewhere:

pub async fn get_device_schemas(&self, serial: u64) -> Result<Option<SchemaReport>, ()> {
let res = self
.client
.send_resp::<GetSchemasEndpoint>(&serial)
.await
.map_err(drop)?;
let Some(res) = res else {
return Ok(None);
};
Ok(Some(res))
}

@jamesmunns
Copy link
Contributor Author

Also, we need an example that shows topics in, I don't think we have one in postcard-rpc or poststation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant