We don't currently offer the ability to pass optional arguments when calling create_history_stream. This means that we can't define seq ("only give me messages with sequence number > x") or limit ("only give me x messages"), among other arguments. I'd like to add args (or similar) as a second (optional) parameter to the function. kuska already has a type we can use:
We don't currently offer the ability to pass optional arguments when calling `create_history_stream`. This means that we can't define `seq` ("only give me messages with sequence number > x") or `limit` ("only give me x messages"), among other arguments. I'd like to add `args` (or similar) as a second (optional) parameter to the function. kuska already has a type we can use:
```rust
kuska_ssb::api::dto::CreateHistoryStreamIn
```
https://github.com/Kuska-ssb/ssb/blob/master/src/api/dto/history_stream.rs
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
We don't currently offer the ability to pass optional arguments when calling
create_history_stream. This means that we can't defineseq("only give me messages with sequence number > x") orlimit("only give me x messages"), among other arguments. I'd like to addargs(or similar) as a second (optional) parameter to the function. kuska already has a type we can use:https://github.com/Kuska-ssb/ssb/blob/master/src/api/dto/history_stream.rs
Addressed by #56.