Interface LdapSocketConnector

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void close()
      Releases any resources associated with this connector.
      io.reactivex.Single<LdapSocket> connect()
      Returns a Single which connects to a peer each time it is subscribed.
    • Method Detail

      • connect

        io.reactivex.Single<LdapSocket> connect()
        Returns a Single which connects to a peer each time it is subscribed.
        Returns:
        A Single which connects to a peer each time it is subscribed.
      • close

        void close()
        Releases any resources associated with this connector. Previously connected sockets will not be impacted. Subsequent attempts to connect will fail with an IllegalStateException.

        Calling this method on a connector that is already closed has no effect.

        Specified by:
        close in interface AutoCloseable
        Specified by:
        close in interface Closeable