Interface RemoteFileStructureUpdater
-
public interface RemoteFileStructureUpdater
A helper entity that allows to fetch the remote file structure by chunks. When a node's children are not fetched, thegetChildren
method can be used to update the state.The updater is always bound to existing
RemoteFileStructure
, which means is bound to a certain agent.- Since:
- 8.1
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<RemoteFileStructure>
getChildren(String directoryName)
Returns the children of the directory.
-
-
-
Method Detail
-
getChildren
@NotNull List<RemoteFileStructure> getChildren(@NotNull String directoryName)
Returns the children of the directory.- Parameters:
directoryName
- the directory name- Returns:
- children list
-
-