org.eclipse.ecf.provider.comm
Interface IAsynchConnection

All Superinterfaces:
org.eclipse.core.runtime.IAdaptable, IConnection
All Known Subinterfaces:
ISynchAsynchConnection
All Known Implementing Classes:
Client

public interface IAsynchConnection
extends IConnection

Asynchronous connection


Method Summary
 void sendAsynch(ID receiver, byte[] data)
          Send data asynchronously.
 
Methods inherited from interface org.eclipse.ecf.provider.comm.IConnection
addListener, connect, disconnect, getLocalID, getProperties, isConnected, isStarted, removeListener, start, stop
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 

Method Detail

sendAsynch

void sendAsynch(ID receiver,
                byte[] data)
                throws java.io.IOException
Send data asynchronously. Implementing classes should not block on sending the given data and return immediately.

Parameters:
receiver - the ID of the intended receiver
data - the data to send
Throws:
java.io.IOException - thrown if data cannot be sent (e.g. disconnected)