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
Fields in com.rabbitmq.client declared as MetricsCollector Modifier and Type Field Description private MetricsCollector
ConnectionFactory. metricsCollector
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
.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, ObservationCollector observationCollector)
Construct a new connectionChannelManager(ConsumerWorkService workService, int channelMax, java.util.concurrent.ThreadFactory threadFactory, MetricsCollector metricsCollector, ObservationCollector observationCollector)
ChannelN(AMQConnection connection, int channelNumber, ConsumerWorkService workService, MetricsCollector metricsCollector, ObservationCollector observationCollector)
Construct a new channel on the given connection with the given channel number. -
Uses of MetricsCollector in com.rabbitmq.client.impl.recovery
Fields in com.rabbitmq.client.impl.recovery declared as MetricsCollector Modifier and Type Field Description private MetricsCollector
RecoveryAwareAMQConnectionFactory. metricsCollector
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, ObservationCollector observationCollector)
RecoveryAwareAMQConnection(ConnectionParams params, FrameHandler handler, MetricsCollector metricsCollector, ObservationCollector observationCollector)
RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, AddressResolver addressResolver, MetricsCollector metricsCollector, ObservationCollector observationCollector)
RecoveryAwareChannelManager(ConsumerWorkService workService, int channelMax, java.util.concurrent.ThreadFactory threadFactory, MetricsCollector metricsCollector, ObservationCollector observationCollector)
RecoveryAwareChannelN(AMQConnection connection, int channelNumber, ConsumerWorkService workService, MetricsCollector metricsCollector, ObservationCollector observationCollector)
Construct a new channel on the given connection with the given channel number.
-