Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@ private ImmutableList<ObjectId> getAdvertisedRefs(HttpResponse response) throws
*
* @param commitSender Commits are written to streams provided by this {@link Supplier}, in the given
* chunk size.
* @param treeReceiver Receives file names (aka 'tree' in Git speak) that the CLI thinks the server needs,
* and respond with those that the server actually needs.
* @param fileSender Receives the actual contents of the files that the server needs.
*/
public void transfer(
Collection<ObjectId> advertised, IOConsumer<ContentProducer> commitSender, TreeReceiver treeReceiver, IOConsumer<ContentProducer> fileSender, int chunkSize)
Expand Down
Loading