You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if users want to get the latest data file for certain collector or data type, they need to call .latest() and filter the data with custom .filter function.
We should allow users to use the same filtering mechanism to filter .latest() results. The following example should work:
let latest_rcc00_rib = bgpkit_broker::BgpkitBroker::new().collector_id("rrc00").data_type("rib").latest();
The text was updated successfully, but these errors were encountered:
Currently, if users want to get the latest data file for certain collector or data type, they need to call
.latest()
and filter the data with custom.filter
function.We should allow users to use the same filtering mechanism to filter
.latest()
results. The following example should work:The text was updated successfully, but these errors were encountered: