Interface SocketChannelConfigurator

All Known Implementing Classes:
DefaultSocketChannelConfigurator
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface SocketChannelConfigurator
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a composed configurator that performs, in sequence, this operation followed by the after operation.
    void
    configure(SocketChannel socketChannel)
    Provides a hook to insert custom configuration of the SocketChannels used to connect to an AMQP server before they connect.
  • Method Details

    • configure

      void configure(SocketChannel socketChannel) throws IOException
      Provides a hook to insert custom configuration of the SocketChannels used to connect to an AMQP server before they connect.
      Throws:
      IOException
    • andThen

      Returns a composed configurator that performs, in sequence, this operation followed by the after operation.
      Parameters:
      after - the operation to perform after this operation
      Returns:
      a composed configurator that performs in sequence this operation followed by the after operation
      Throws:
      NullPointerException - if after is null