Uses of Interface
com.rabbitmq.client.MetricsCollector
-
Packages that use MetricsCollector Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl Implementations of interfaces specified in the client API, and their supporting classes.com.rabbitmq.client.impl.recovery Implementation of connection and topology recovery. -
-
Uses of MetricsCollector in com.rabbitmq.client
Classes in com.rabbitmq.client that implement MetricsCollector Modifier and Type Class Description class
NoOpMetricsCollector
Methods in com.rabbitmq.client that return MetricsCollector Modifier and Type Method Description MetricsCollector
ConnectionFactory. getMetricsCollector()
Methods in com.rabbitmq.client with parameters of type MetricsCollector Modifier and Type Method Description protected AMQConnection
ConnectionFactory. createConnection(ConnectionParams params, FrameHandler frameHandler, MetricsCollector metricsCollector)
void
ConnectionFactory. setMetricsCollector(MetricsCollector metricsCollector)
-
Uses of MetricsCollector in com.rabbitmq.client.impl
Classes in com.rabbitmq.client.impl that implement MetricsCollector Modifier and Type Class Description class
AbstractMetricsCollector
Base class forMetricsCollector
.class
MicrometerMetricsCollector
Micrometer implementation ofMetricsCollector
.class
StandardMetricsCollector
Dropwizard Metrics implementation ofMetricsCollector
.Fields in com.rabbitmq.client.impl declared as MetricsCollector Modifier and Type Field Description protected MetricsCollector
AMQConnection. metricsCollector
protected MetricsCollector
ChannelManager. metricsCollector
protected MetricsCollector
ChannelN. metricsCollector
Constructors in com.rabbitmq.client.impl with parameters of type MetricsCollector Constructor Description AMQConnection(ConnectionParams params, FrameHandler frameHandler, MetricsCollector metricsCollector)
Construct a new connectionChannelManager(ConsumerWorkService workService, int channelMax, ThreadFactory threadFactory, MetricsCollector metricsCollector)
ChannelN(AMQConnection connection, int channelNumber, ConsumerWorkService workService, MetricsCollector metricsCollector)
Construct a new channel on the given connection with the given channel number. -
Uses of MetricsCollector in com.rabbitmq.client.impl.recovery
Methods in com.rabbitmq.client.impl.recovery with parameters of type MetricsCollector Modifier and Type Method Description protected RecoveryAwareAMQConnection
RecoveryAwareAMQConnectionFactory. createConnection(ConnectionParams params, FrameHandler handler, MetricsCollector metricsCollector)
Constructors in com.rabbitmq.client.impl.recovery with parameters of type MetricsCollector Constructor Description AutorecoveringConnection(ConnectionParams params, FrameHandlerFactory f, AddressResolver addressResolver, MetricsCollector metricsCollector)
RecoveryAwareAMQConnection(ConnectionParams params, FrameHandler handler, MetricsCollector metricsCollector)
RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, AddressResolver addressResolver, MetricsCollector metricsCollector)
RecoveryAwareChannelManager(ConsumerWorkService workService, int channelMax, ThreadFactory threadFactory, MetricsCollector metricsCollector)
RecoveryAwareChannelN(AMQConnection connection, int channelNumber, ConsumerWorkService workService, MetricsCollector metricsCollector)
Construct a new channel on the given connection with the given channel number.
-