blob: cf940463165144a54a0d32d69bdeacfeb69a94ec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.transport;
import java.io.IOException;
import java.net.Socket;
import org.eclipse.wst.jsdt.debug.transport.packet.Packet;
import org.eclipse.wst.jsdt.debug.transport.socket.SocketConnection;
/**
* Describes a connection to a debugger.
* <br><br>
* This interface is intended to be implemented by clients.
* A default implementation for {@link Socket} communication is provided
* in the class {@link SocketConnection}.
*
* @since 1.0
*/
public interface Connection {
/**
* Returns if the connection is open.
*
* @return <code>true</code> if the connection is open <code>false</code> otherwise
*/
public boolean isOpen();
/**
* Closes the connection.
*
* @throws IOException if the connection failed to close or is already closed
*/
public void close() throws IOException;
/**
* Writes the given packet to the connection
*
* @param packet the packet to write, <code>null</code> is not accepted
* @throws IOException if the write failed
*/
public void writePacket(Packet packet) throws IOException;
/**
* Reads the next packet from the connection. This is non-blocking.<br>
* <br>
* This method cannot return <code>null</code>.
*
* @return the next {@link Packet} from the connection
* @throws IOException if the connection is prematurely closed or the read failed
*/
public Packet readPacket() throws IOException;
}