Package org.eclipse.jgit.api
Interface CloneCommand.Callback
- All Known Implementing Classes:
Clone
- Enclosing class:
- CloneCommand
public static interface CloneCommand.Callback
Callback for status of clone operation.
- Since:
- 4.8
-
Method Summary
Modifier and TypeMethodDescriptionvoidcheckingOut(AnyObjectId commit, String path) Notify checkout of commitvoidcloningSubmodule(String path) Notify starting to clone a submodule.voidinitializedSubmodules(Collection<String> submodules) Notify initialized submodules.
-
Method Details
-
initializedSubmodules
Notify initialized submodules.- Parameters:
submodules- the submodules
-
cloningSubmodule
Notify starting to clone a submodule.- Parameters:
path- the submodule path
-
checkingOut
Notify checkout of commit- Parameters:
commit- the id of the commit being checked outpath- the submodule path
-