All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.remote.RemoteProcessHandlerBase Maven / Gradle / Ivy

package com.intellij.remote;

import com.intellij.openapi.util.Pair;
import com.intellij.remote.RemoteSdkException;
import com.intellij.util.PathMappingSettings;

import java.util.List;

/**
 * @author traff
 */
public interface RemoteProcessHandlerBase {
  PathMappingSettings getMappingSettings();

  Pair obtainRemoteSocket() throws RemoteSdkException;

  void addRemoteForwarding(int remotePort, int localPort);

  List getFileMappings();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy