Package com.rabbitmq.client
Class ConnectionPostProcessors.AbstractConnectionPostProcessor
- java.lang.Object
-
- com.rabbitmq.client.ConnectionPostProcessors.AbstractConnectionPostProcessor
-
- All Implemented Interfaces:
ConnectionPostProcessor
- Enclosing class:
- ConnectionPostProcessors
public abstract static class ConnectionPostProcessors.AbstractConnectionPostProcessor extends Object implements ConnectionPostProcessor
-
-
Constructor Summary
Constructors Constructor Description AbstractConnectionPostProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectionPostProcessors.AbstractConnectionPostProcessor
andThen(ConnectionPostProcessor after)
Returns a composed processor that performs, in sequence, this operation followed by theafter
operation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.rabbitmq.client.ConnectionPostProcessor
postProcess
-
-
-
-
Method Detail
-
andThen
public ConnectionPostProcessors.AbstractConnectionPostProcessor andThen(ConnectionPostProcessor after)
Returns a composed processor that performs, in sequence, this operation followed by theafter
operation.- Parameters:
after
- the operation to perform after this operation- Returns:
- a composed processor that performs in sequence this
operation followed by the
after
operation - Throws:
NullPointerException
- ifafter
is null
-
-