aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/transport/WalkTransport.java
blob: d02fe7e7dd3dd81d47c3e55c5dddd571d5de7899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C) 2009, Constantine Plotnikov <constantine.plotnikov@gmail.com>
 * Copyright (C) 2009, JetBrains s.r.o.
 * Copyright (C) 2008, Mike Ralphson <mike@abacus.co.uk>
 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org> and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.transport;

/**
 * Marker interface for an object transport walking transport.
 * <p>
 * Implementations of WalkTransport transfer individual objects one at a time
 * from the loose objects directory, or entire packs if the source side does not
 * have the object as a loose object.
 * <p>
 * WalkTransports are not as efficient as
 * {@link org.eclipse.jgit.transport.PackTransport} instances, but can be useful
 * in situations where a pack transport is not acceptable.
 *
 * @see WalkFetchConnection
 */
public interface WalkTransport {
	// no methods in marker interface
}