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
list-fetcher, a utility to fetch list page by page and change the results to an iterator
Interface to implement
import (
"encoding/json"
)
typePageFetcherinterface {
GetNextPage() (totalint64, list []json.RawMessage, errerror)
AdjustPage(list []json.RawMessage)
HasMore() bool// called if total is 0ErrorOccurrs(errerror)
}