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 TypeMethodDescriptionvoid
checkingOut
(AnyObjectId commit, String path) Notify checkout of commitvoid
cloningSubmodule
(String path) Notify starting to clone a submodule.void
initializedSubmodules
(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
-