Package jetbrains.vcs.api.remote
Interface VcsSessionManager
-
public interface VcsSessionManagerCreated 08.11.12 18:06- Author:
- Eugene Petrenko (eugene.petrenko@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VcsSessionfindSession(String sessionId)VcsSessiongetOrCreateSession(VcsSettings repo)booleanhasSession(VcsSettings repo)VcsSessionregisterSession(String sessionId, VcsSettings repo)voidremoveRepositorySession(VcsSettings repo)
-
-
-
Method Detail
-
getOrCreateSession
@NotNull VcsSession getOrCreateSession(@NotNull VcsSettings repo)
-
registerSession
@NotNull VcsSession registerSession(@NotNull String sessionId, @NotNull VcsSettings repo)
-
findSession
@Nullable VcsSession findSession(@NotNull String sessionId)
-
removeRepositorySession
void removeRepositorySession(@NotNull VcsSettings repo)
-
hasSession
boolean hasSession(@NotNull VcsSettings repo)
-
-