static Stream<Reference> |
StreamingUtil.getAllReferencesStream(@NotNull NessieApiV1 api,
OptionalInt maxRecords,
String filter) |
Default implementation to return a stream of references, functionally equivalent to calling
getAllReferences() with manual paging.
|
static Stream<LogResponse.LogEntry> |
StreamingUtil.getCommitLogStream(@NotNull NessieApiV1 api,
@NotNull String ref,
String hashOnRef,
String untilHash,
String filter,
OptionalInt maxRecords) |
Default implementation to return a stream of commit-log entries, functionally equivalent to
calling getCommitLog() with manual paging.
|
static Stream<EntriesResponse.Entry> |
StreamingUtil.getEntriesStream(@NotNull NessieApiV1 api,
@NotNull String ref,
String hashOnRef,
String filter,
OptionalInt maxRecords) |
Default implementation to return a stream of objects for a ref, functionally equivalent to
calling getEntries() with manual paging.
|
static Stream<RefLogResponse.RefLogResponseEntry> |
StreamingUtil.getReflogStream(@NotNull NessieApiV1 api,
String fromHash,
String untilHash,
String filter,
OptionalInt maxRecords) |
Default implementation to return a stream of reflog entries, functionally equivalent to calling
getRefLog() with manual paging.
|