blob: 35f4d0e894f028ff562f7634b05b9131c2cd3a36 [file] [log] [blame]
package com.sun.jdi.connect;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.io.IOException;
import java.util.Map;
import com.sun.jdi.VirtualMachine;
public interface ListeningConnector extends Connector {
public VirtualMachine accept(Map arg1) throws IOException, IllegalConnectorArgumentsException;
public String startListening(Map arg1) throws IOException, IllegalConnectorArgumentsException;
public void stopListening(Map arg1) throws IOException, IllegalConnectorArgumentsException;
public boolean supportsMultipleConnections() throws IOException, IllegalConnectorArgumentsException;
}