Interface IAsynchConnection

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

public interface IAsynchConnection extends IConnection
Asynchronous connection
  • Method Details

    • sendAsynch

      void sendAsynch(ID receiver, byte[] data) throws 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:
      IOException - thrown if data cannot be sent (e.g. disconnected)