public InterruptibleUploadProcess()

in deploy-runner-agent/src/main/java/jetbrains/buildServer/deployer/agent/ftp/InterruptibleUploadProcess.java [61:73]


  public InterruptibleUploadProcess(@NotNull final FTPClient client,
                                    @NotNull final BuildProgressLogger logger,
                                    @NotNull final List<ArtifactsCollection> artifacts,
                                    final boolean isAutoType,
                                    @NotNull final String path,
                                    @NotNull AtomicReference<BuildFinishedStatus> isFinishedSuccessfully) {
    this.myClient = client;
    this.myLogger = logger;
    this.myArtifacts = artifacts;
    this.myIsAutoType = isAutoType;
    this.myPath = path;
    myFinishStatus = isFinishedSuccessfully;
  }