Package com.rabbitmq.client
Interface TrafficListener
-
- All Known Implementing Classes:
LogTrafficListener
public interface TrafficListener
Contract to log outbound and inboundCommand
s.- Since:
- 4.9.0
- See Also:
ConnectionFactory.setTrafficListener(TrafficListener)
-
-
Field Summary
Fields Modifier and Type Field Description static TrafficListener
NO_OP
No-opTrafficListener
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
read(Command inboundCommand)
Notified for each inboundCommand
.void
write(Command outboundCommand)
Notified for each outboundCommand
.
-
-
-
Field Detail
-
NO_OP
static final TrafficListener NO_OP
No-opTrafficListener
.
-
-