Interface BaseInterceptor<P>
-
- All Known Subinterfaces:
Interceptor
public interface BaseInterceptor<P>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanintercept(P packet, RemotingConnection connection)Intercepts a packet which is received before it is sent to the channel
-
-
-
Method Detail
-
intercept
boolean intercept(P packet, RemotingConnection connection) throws ActiveMQException
Intercepts a packet which is received before it is sent to the channel- Parameters:
packet- the packet being receivedconnection- the connection the packet was received on- Returns:
trueto process the next interceptor and handle the packet,falseto abort processing of the packet- Throws:
ActiveMQException
-
-