Package com.rabbitmq.client
Interface ConnectionPostProcessor
-
- All Known Implementing Classes:
ConnectionPostProcessors.AbstractConnectionPostProcessor
public interface ConnectionPostProcessor
Hook to add processing on the open TCP connection.Used e.g. to add hostname verification on TLS connection.
- Since:
- 4.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postProcess(ConnectionContext context)
Post-process the open TCP connection.
-
-
-
Method Detail
-
postProcess
void postProcess(ConnectionContext context) throws IOException
Post-process the open TCP connection.- Parameters:
context
- some TCP connection context (e.g. socket)- Throws:
IOException
-
-