Class SSLClient

java.lang.Object
org.eclipse.ecf.provider.comm.tcp.SSLClient
All Implemented Interfaces:
org.eclipse.core.runtime.IAdaptable, IAsynchConnection, IConnection, ISynchAsynchConnection, ISynchConnection

public final class SSLClient extends Object implements ISynchAsynchConnection
Since:
4.3
  • Field Details

  • Constructor Details

  • Method Details

    • getLocalID

      public ID getLocalID()
      Description copied from interface: IConnection
      Get local ID for this connection
      Specified by:
      getLocalID in interface IConnection
      Returns:
      ID associated with local instance
    • removeListener

      public void removeListener(IConnectionListener l)
      Description copied from interface: IConnection
      remove comm layer event listener
      Specified by:
      removeListener in interface IConnection
      Parameters:
      l - the listener to remove
    • addListener

      public void addListener(IConnectionListener l)
      Description copied from interface: IConnection
      Add comm layer event listener
      Specified by:
      addListener in interface IConnection
      Parameters:
      l - the listener to add
    • isConnected

      public boolean isConnected()
      Specified by:
      isConnected in interface IConnection
      Returns:
      true if the implementing class has been previously connected, false if not connected
    • isStarted

      public boolean isStarted()
      Specified by:
      isStarted in interface IConnection
      Returns:
      true if connection is started, false otherwise
    • connect

      public Object connect(ID remote, Object data, int timeout) throws ECFException
      Description copied from interface: IConnection
      Connect to a remote process
      Specified by:
      connect in interface IConnection
      Parameters:
      remote - the identity of the remote to connect to. Must not be null.
      data - any data to send with the connection request (e.g. password or other authentication data)
      timeout - the timeout (in ms) for the connection to occur
      Returns:
      a result object that is of type specific to provider implementation
      Throws:
      ECFException - thrown if some problem with connect
    • setCloseTimeout

      public void setCloseTimeout(long t)
    • start

      public void start()
      Description copied from interface: IConnection
      Start connection
      Specified by:
      start in interface IConnection
    • stop

      public void stop()
      Description copied from interface: IConnection
      Stop connection
      Specified by:
      stop in interface IConnection
    • disconnect

      public void disconnect()
      Description copied from interface: IConnection
      Disconnect
      Specified by:
      disconnect in interface IConnection
    • sendAsynch

      public void sendAsynch(ID recipient, byte[] obj) throws IOException
      Description copied from interface: IAsynchConnection
      Send data asynchronously. Implementing classes should not block on sending the given data and return immediately.
      Specified by:
      sendAsynch in interface IAsynchConnection
      Parameters:
      recipient - the ID of the intended receiver
      obj - the data to send
      Throws:
      IOException - thrown if data cannot be sent (e.g. disconnected)
    • sendAsynch

      public void sendAsynch(ID recipient, Object obj) throws IOException
      Throws:
      IOException
    • queueObject

      public void queueObject(ID recipient, Serializable obj) throws IOException
      Throws:
      IOException
    • sendObject

      public Serializable sendObject(ID recipient, Serializable obj) throws IOException
      Throws:
      IOException
    • sendSynch

      public Object sendSynch(ID rec, Object obj) throws IOException
      Throws:
      IOException
    • sendSynch

      public Object sendSynch(ID rec, byte[] obj) throws IOException
      Description copied from interface: ISynchConnection
      Send data synchronously, blocking until a result is received
      Specified by:
      sendSynch in interface ISynchConnection
      Parameters:
      rec - the receiver to receive the synchronous request
      obj - the data to send
      Returns:
      the data received. The return type will be specific to the provider implementation.
      Throws:
      IOException - thrown if sending cannot occur (e.g. not connected)
    • getProperties

      public Map getProperties()
      Description copied from interface: IConnection
      Get properties for this connection
      Specified by:
      getProperties in interface IConnection
      Returns:
      Map the properties associated with this connection. May be null.
    • getAdapter

      public Object getAdapter(Class clazz)
      Specified by:
      getAdapter in interface org.eclipse.core.runtime.IAdaptable
    • debug

      protected void debug(String msg)
    • traceStack

      protected void traceStack(String msg, Throwable e)
    • setProperties

      public void setProperties(Map props)