blob: 3d00a086870ad06e174a5fd5803fa1a78d280f48 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi.connect.spi;
import java.io.IOException;
public abstract class TransportService {
public abstract static class Capabilities {
public abstract boolean supportsAcceptTimeout();
public abstract boolean supportsAttachTimeout();
public abstract boolean supportsHandshakeTimeout();
public abstract boolean supportsMultipleConnections();
}
public abstract static class ListenKey {
public abstract String address();
}
public abstract Connection accept(TransportService.ListenKey arg1, long arg2, long arg3) throws IOException;
public abstract Connection attach(String arg1, long arg2, long arg3) throws IOException;
public abstract TransportService.Capabilities capabilities();
public abstract String description();
public abstract String name();
public abstract TransportService.ListenKey startListening() throws IOException;
public abstract TransportService.ListenKey startListening(String arg1) throws IOException;
public abstract void stopListening(TransportService.ListenKey arg1) throws IOException;
}